Merge pull request #188 from pharo-nosql/fix-issue-157 #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
pharo-version: [ Pharo64-13, Pharo64-12, Pharo64-11 ] | |
ston: [ .smalltalk.ston ] | |
mongodb-version: [ 5, 6 ] | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.pharo-version }}, ${{ matrix.mongodb-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create mongoDB Docker container | |
run: sudo docker run -d -p 27017:27017 mongo:${{ matrix.mongodb-version }} | |
- name: Setup SmalltalkCI | |
uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.pharo-version }} | |
- name: Get Pharo and Run Tests | |
run: smalltalkci -s ${{ matrix.pharo-version }} ${{ matrix.ston }} | |
shell: bash | |
timeout-minutes: 40 |