-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 875 Bytes
/
runtest.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
name: Run tests
on:
push:
branches:
- master
- main
pull_request:
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.8', '1.10'] # 'nightly'
julia-arch: [x64] # x86
os: [ubuntu-latest, windows-latest, macOS-latest]
# exclude:
# - os: macOS-latest
# julia-arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1.5
- uses: julia-actions/julia-buildpkg@v1.5
- uses: julia-actions/julia-runtest@v1.9
# with:
# annotate: true