Skip to content

Commit 7f5ed53

Browse files
committed
enable CI
1 parent 70804ab commit 7f5ed53

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.github/workflows/continuous.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
env:
9+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10+
strategy:
11+
matrix:
12+
smalltalk: [ Pharo64-9.0, Pharo64-10, 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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SmalltalkCISpec {
2+
#loading : [
3+
SCIMetacelloLoadSpec {
4+
#baseline : 'MathRandomNumbers',
5+
#directory : 'src'
6+
}
7+
],
8+
#testing : {
9+
#coverage : {
10+
#packages : [ 'Math-RandomNumbers*' ]
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)