File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments