File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : smalltalkCI
2+
3+ on : [push]
4+
5+ jobs :
6+ test :
7+ runs-on : ubuntu-22.04
8+ strategy :
9+ fail-fast : false
10+ matrix :
11+ smalltalk : [Pharo64-11, Squeak64-6.0]
12+ experimental : [false]
13+ continue-on-error : ${{ matrix.experimental }}
14+ name : ${{ matrix.smalltalk }}
15+ steps :
16+ - uses : actions/checkout@v3
17+ - uses : hpi-swa/setup-smalltalkCI@v1
18+ with :
19+ smalltalk-image : ${{ matrix.smalltalk }}
20+ - name : Run tests
21+ run : smalltalkci -s ${{ matrix.smalltalk }}
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24+ shell : bash
25+ timeout-minutes : 20
Original file line number Diff line number Diff line change 1+ SmalltalkCISpec {
2+ #loading : [
3+ SCIMetacelloLoadSpec {
4+ #baseline : ' MessagePack' ,
5+ #directory : ' repository' ,
6+ #load : [ ' default' ],
7+ #onConflict : #useLoaded ,
8+ #useLatestMetacello : false ,
9+ #onWarningLog : true ,
10+ #platforms : [ #pharo , #squeak ]
11+ }
12+ ]
13+ }
You can’t perform that action at this time.
0 commit comments