We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef1b32e commit dce70d2Copy full SHA for dce70d2
.github/workflows/unit-testing.yml
@@ -0,0 +1,21 @@
1
+name: RSR Unit Testing
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ strategy:
8
+ matrix:
9
+ smalltalk:
10
+ - Pharo64-stable
11
+ - Pharo64-12
12
+ - Pharo64-11
13
+ name: ${{ matrix.smalltalk }}
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: hpi-swa/setup-smalltalkCI@v1
17
+ with:
18
+ smalltalk-image: ${{ matrix.smalltalk }}
19
+ - run: smalltalkci -s ${{ matrix.smalltalk }}
20
+ shell: bash
21
+ timeout-minutes: 15
.smalltalk.ston
@@ -0,0 +1,12 @@
+SmalltalkCISpec {
+ #loading : [
+ SCIMetacelloLoadSpec {
+ #baseline : 'RemoteServiceReplication',
+ #load : [ 'All' ],
+ #directory : 'src',
+ #onWarningLog : true,
+ #platforms : [ #pharo ]
+ }
+ ]
+}
0 commit comments