-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (45 loc) · 1.1 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
44
45
46
47
48
name: CI
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run all
test: # make sure the action works on a clean machine without building
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
release:
- '10.3-2021.10'
- '10.3-2021.07'
- '10-2021.10'
- '10-2021.07'
- '10-2020-q4'
- '9-2020-q2'
- '9-2019-q4'
- '8-2019-q3'
- '8-2018-q4'
- '7-2018-q2'
- '7-2017-q4'
- '6-2017-q2'
- '6-2017-q1'
- '6-2016-q4'
- '5-2016-q3'
- '5-2016-q2'
- '5-2016-q1'
- '5-2015-q4'
name: Test @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./
with:
release: ${{ matrix.release }}
- run: arm-none-eabi-gcc -v