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 fd0cd0a commit eecf3e8Copy full SHA for eecf3e8
.github/workflows/tests.yml
@@ -0,0 +1,30 @@
1
+name: Tests
2
+
3
+on: [push, workflow_dispatch]
4
5
+jobs:
6
+ test:
7
+ strategy:
8
+ matrix:
9
+ os:
10
+ - ubuntu-latest
11
+ - macos-latest
12
+ - windows-latest
13
+ smalltalk:
14
+ - Squeak64-trunk
15
+ - Squeak32-trunk
16
+ - Squeak64-5.3
17
+ - Squeak64-5.2
18
+ name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
19
+ runs-on: ${{ matrix.os }}
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - id: smalltalkci
23
+ uses: hpi-swa/setup-smalltalkCI@v1
24
+ with:
25
+ smalltalk-image: ${{ matrix.smalltalk }}
26
+ - run: smalltalkci -s ${{ steps.smalltalkci.outputs.smalltalk-image }}
27
+ timeout-minutes: 15
28
+ env:
29
+ # for uploading coverage reports
30
+ GITHUB_TOKEN: ${{ github.token }}
0 commit comments