-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (45 loc) · 965 Bytes
/
tests.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
49
50
name: tests
on:
workflow_dispatch:
pull_request:
branches:
- main
- dev
types:
- opened
- synchronize
- reopened
- ready_for_review
path-ignore:
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'README.md'
- 'docs/**'
- 'use_cases/**'
push:
branches:
- main
# https://github.com/julia-actions/julia-runtest
permissions:
actions: write
contents: read
jobs:
test:
if: ${{ ! github.event.pull_request.draft }}
strategy:
matrix:
julia-version:
- '1.10'
os:
- ubuntu-latest
- windows-latest
- macOS-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1