Fix #10 #55
Workflow file for this run
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: Test | |
on: [ push, pull_request, workflow_dispatch ] | |
jobs: | |
test: | |
strategy: | |
# Default value means that a failure in one OS cancels all jobs | |
fail-fast: false | |
matrix: | |
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12, Pharo64-13 ] | |
os: [ ubuntu-latest, windows-latest ] # macos-latest | |
ston: [ .ci.ston ] | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.smalltalk }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup smalltalkCI | |
uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- name: "Download Pharo, load code and run SUnit tests" | |
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }} | |
shell: bash | |
#timeout-minutes: 10 | |
#env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |