Skip to content

Commit 7241240

Browse files
authored
Merge pull request #309 from jecisc/launch-all-tests
Launch tests of all packages starting with Math-
2 parents fffb8c9 + 052b143 commit 7241240

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
env:
1919
PROJECT_NAME: PolyMath-${{ matrix.smalltalk }}
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- uses: hpi-swa/setup-smalltalkCI@v1
2323
with:
24-
smalltalk-version: ${{ matrix.smalltalk }}
24+
smalltalk-image: ${{ matrix.smalltalk }}
2525
- run: smalltalkci -s ${{ matrix.smalltalk }}
2626
shell: bash
27-
timeout-minutes: 15
27+
timeout-minutes: 15

.github/workflows/smalltalk-ci.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,7 @@ name: CI
33
env:
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55

6-
on:
7-
push:
8-
branches:
9-
- '**'
10-
pull_request:
11-
types: [assigned, opened, synchronize, reopened]
6+
on: [ push, pull_request ]
127

138
jobs:
149
build:
@@ -20,10 +15,10 @@ jobs:
2015
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11 ]
2116
name: ${{ matrix.smalltalk }}
2217
steps:
23-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
2419
- uses: hpi-swa/setup-smalltalkCI@v1
2520
with:
26-
smalltalk-version: ${{ matrix.smalltalk }}
21+
smalltalk-image: ${{ matrix.smalltalk }}
2722
- run: smalltalkci -s ${{ matrix.smalltalk }}
2823
shell: bash
29-
timeout-minutes: 15
24+
timeout-minutes: 15

.smalltalk.ston

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ SmalltalkCISpec {
77
}
88
],
99
#testing : {
10+
#include : {
11+
#packages : [ 'Math-.*' ]
12+
},
1013
#coverage : {
1114
#packages : [
1215
'Math-A*',

0 commit comments

Comments
 (0)