forked from pharo-contributions/taskit
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 873 Bytes
/
Copy pathtests.yml
File metadata and controls
30 lines (28 loc) · 873 Bytes
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
29
30
name: Tests
on:
push:
pull_request:
# Allows running this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
# When fail-fast is true, one failure cancels all matrix.
fail-fast: false
matrix:
smalltalk: [ Pharo64-9.0, Pharo64-10, Pharo64-11 ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
ston: [ .ci.ston ]
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup smalltalkCI
uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
- name: Load Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 10