-
Notifications
You must be signed in to change notification settings - Fork 29
28 lines (26 loc) · 896 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: CI
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
smalltalk: [ Squeak64-trunk, Squeak64-6.0, Squeak64-5.3, Squeak32-5.2 ]
# Since Squot does not deal with platforms really,
# only run the latest versions on Windows and macOS.
include:
- os: macos-latest
smalltalk: Squeak64-trunk
- os: windows-latest
smalltalk: Squeak64-trunk
fail-fast: false # Do not let failures on Squeak 5.2 stop other jobs.
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- run: smalltalkci -s ${{ matrix.smalltalk }}
shell: bash
timeout-minutes: 15