Update test.yml #91
Workflow file for this run
This file contains hidden or 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 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the development branch | |
| on: | |
| # Run on push and pull requests on any branch, but ignore if change doesn't affect code. | |
| push: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'docs/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - 'docs/**' | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ macos-latest, windows-latest, ubuntu-latest] | |
| smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11, Pharo64-12 ] | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.smalltalk }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: hpi-swa/setup-smalltalkCI@v1 | |
| with: | |
| smalltalk-version: ${{ matrix.smalltalk }} | |
| - run: smalltalkci -s ${{ matrix.smalltalk }} | |
| shell: bash | |
| timeout-minutes: 15 |