We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dbe1e9 commit dbb0fcaCopy full SHA for dbb0fca
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: smalltalkCI
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-22.04
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ smalltalk: [Pharo64-11, Squeak64-6.0]
12
+ experimental: [false]
13
+ continue-on-error: ${{ matrix.experimental }}
14
+ name: ${{ matrix.smalltalk }}
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ - uses: hpi-swa/setup-smalltalkCI@v1
18
+ with:
19
+ smalltalk-image: ${{ matrix.smalltalk }}
20
+ - name: Run tests
21
+ run: smalltalkci -s ${{ matrix.smalltalk }}
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ shell: bash
25
+ timeout-minutes: 20
0 commit comments