Merge 5679d82b15716915c6b30e9c112c1e074e2c5534 #4
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: Pharo CI | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
smalltalk: [ Pharo64-11 ] | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.smalltalk }} - ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-version: ${{ matrix.smalltalk }} | |
- run: smalltalkci -s ${{ matrix.smalltalk }} | |
shell: bash | |
timeout-minutes: 15 |