-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 812 Bytes
/
build.yaml
File metadata and controls
41 lines (39 loc) · 812 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
name: Build
on:
push:
branches:
- main
paths:
- 'src/**'
- 'Project.toml'
pull_request:
branches:
- main
paths:
- 'src/**'
- 'Project.toml'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version:
- '1.6.7'
- 'nightly'
julia-arch:
- x64
os:
- ubuntu-latest
- windows-latest
- macOS-latest
exclude:
- os: macOS-latest
julia-arch: x86
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1