-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (53 loc) · 1.22 KB
/
ci.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
51
52
53
54
55
name: CI
on:
push:
branches:
- master
- dev
paths:
- "src/**"
- "test/**"
- "example/**"
- "Project.toml"
- ".github/workflows/ci.yml"
pull_request:
paths:
- "src/**"
- "test/**"
- "example/**"
- "Project.toml"
- ".github/workflows/ci.yml"
workflow_dispatch:
jobs:
build:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- "1.6" # next LTS
- "1" # latest stable 1.x release of Julia
- nightly
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
# 32-bit Julia binaries are not available on macOS
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v2
with:
file: ./lcov.info