Removed test runner code from Pharo track (code moved to test runner … #466
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: Pharo track CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| smalltalk: [Pharo64-12, Pharo64-11] | |
| name: ${{ matrix.smalltalk }} | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: hpi-swa/setup-smalltalkCI@521a156968112c9c7ca094ef78c1287a26665f08 | |
| with: | |
| smalltalk-image: ${{ matrix.smalltalk }} | |
| - run: smalltalkci -s ${{ matrix.smalltalk }} | |
| shell: bash | |
| timeout-minutes: 15 |