-
Notifications
You must be signed in to change notification settings - Fork 84
43 lines (41 loc) · 1.27 KB
/
test.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Complete Test
on:
# Run on push and pull requests on any branch, but ignore if change doesn't affect code.
push:
paths-ignore:
- 'README.md'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'docs/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
strategy:
# Default value means that a failure in one OS cancels all
fail-fast: false
matrix:
smalltalk: [ Pharo64-alpha ]
os: [ ubuntu-latest, macos-latest ]
ston: [ .smalltalk.ston ]
# Test Windows with some exclusions.
# At least a part of the problem is reported here:
# https://github.com/pharo-vcs/iceberg/issues/1394
include:
- smalltalk: Pharo64-alpha
os: windows-latest
ston: .smalltalk.windows.ston
runs-on: ${{ matrix.os }}
name: ${{ matrix.smalltalk }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup smalltalkCI
uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-version: ${{ matrix.smalltalk }}
- name: Load Image and Run Tests
run: smalltalkci -s ${{ matrix.smalltalk }} ${{ matrix.ston }}
shell: bash
timeout-minutes: 30