Merge pull request #282 from hpi-swa-teaching/develop #1463
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] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# Select platform(s) | |
os: [ ubuntu-latest ] | |
# Select compatible Smalltalk image(s) | |
smalltalk: [ Squeak64-6.0 ] | |
name: Testing ${{ matrix.smalltalk }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hpi-swa/setup-smalltalkCI@v1 | |
with: | |
smalltalk-image: ${{ matrix.smalltalk }} | |
- run: smalltalkci -s ${{ matrix.smalltalk }} .smalltalk.ston | |
timeout-minutes: 15 | |
env: | |
# for uploading coverage reports | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |