Skip to content

Commit 5440add

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

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/unit-testing.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: RSR Unit Testing
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
matrix:
9+
os:
10+
- ubuntu-latest
11+
- macos-latest
12+
smalltalk:
13+
- Pharo64-stable
14+
- Pharo64-12
15+
- Pharo64-11
16+
name: ${{ matrix.smalltalk }}
17+
runs-on: ${{ matrix.os }}
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: hpi-swa/setup-smalltalkCI@v1
21+
with:
22+
smalltalk-image: ${{ matrix.smalltalk }}
23+
- run: smalltalkci -s ${{ matrix.smalltalk }}
24+
shell: bash
25+
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)