-
-
Notifications
You must be signed in to change notification settings - Fork 40
46 lines (43 loc) · 966 Bytes
/
CI.yml
File metadata and controls
46 lines (43 loc) · 966 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "Tests"
on:
pull_request:
branches:
- master
- 'release-'
- v10
paths-ignore:
- 'docs/**'
push:
branches:
- master
paths-ignore:
- 'docs/**'
- 'benchmark/**'
concurrency:
# Skip intermediate builds: always, but for the master branch.
# Cancel intermediate builds: always, but for the master branch.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
- "pre"
group:
- CPU
- JLArrays
- OpenCL
- QA
exclude:
- version: "pre"
group: QA
uses: "SciML/.github/.github/workflows/tests.yml@master"
with:
julia-version: "${{ matrix.version }}"
group: "${{ matrix.group }}"
secrets: "inherit"