-
Notifications
You must be signed in to change notification settings - Fork 7
62 lines (57 loc) · 1.3 KB
/
UnitTests.yml
File metadata and controls
62 lines (57 loc) · 1.3 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Run tests
on:
push:
branches:
- main
paths:
- '.github/workflows/UnitTests.yml'
- 'ext/**'
- 'src/**'
- 'test/**'
- 'Project.toml'
pull_request:
paths:
- '.github/workflows/UnitTests.yml'
- 'ext/**'
- 'src/**'
- 'test/**'
- 'Project.toml'
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
julia-version:
- 'min'
- '1'
- 'pre'
- 'nightly'
julia-arch:
- default
- x86
os:
- ubuntu-latest
- windows-latest
- macOS-latest
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-runtest@v1