Skip to content

Commit dce70d2

Browse files
committed
170: Added smalltalkci test and associated GitHub action.
1 parent ef1b32e commit dce70d2

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/unit-testing.yml

+21
Original file line numberDiff line numberDiff line change
@@ -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

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SmalltalkCISpec {
2+
#loading : [
3+
SCIMetacelloLoadSpec {
4+
#baseline : 'RemoteServiceReplication',
5+
#load : [ 'All' ],
6+
#directory : 'src',
7+
#onWarningLog : true,
8+
#platforms : [ #pharo ]
9+
}
10+
]
11+
}
12+

0 commit comments

Comments
 (0)