Skip to content

Commit dbb0fca

Browse files
authored
Create main.yml
1 parent 3dbe1e9 commit dbb0fca

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

0 commit comments

Comments
 (0)