-
-
Notifications
You must be signed in to change notification settings - Fork 1
121 lines (95 loc) · 3.37 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: CI
on:
push:
branches:
- main
tags: '*'
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
run-tests:
name: Julia ${{ matrix.version }} (${{ matrix.os }}, ${{ matrix.arch }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
arch: [x64]
version: ['1.6', '1.7', '1.8', '1.9', '1.10', '1.11', 'nightly']
exclude:
- os: macos-latest
version: 'nightly'
- os: windows-latest
version: 'nightly'
runs-on: ${{ matrix.os }}
env:
codecov-os: 'Linux'
codecov-arch: x64
codecov-version: '1.11'
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Julia environment
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Set up Julia caches
uses: julia-actions/cache@v2
with:
cache-name: ${{ github.repository }}-${{ github.workflow }}-${{ github.job }}-julia-${{ hashFiles('.github/workflows/CI.yml') }}
- name: Build package
uses: julia-actions/julia-buildpkg@v1
- name: Run tests
uses: julia-actions/julia-runtest@v1
- name: Process coverage data
# Only run for 'main' branch running on 'Linux' with the latest version of Julia
if: |
github.ref_name == 'main' &&
runner.os == env.codecov-os &&
matrix.arch == env.codecov-arch &&
matrix.version == env.codecov-version
uses: julia-actions/julia-processcoverage@v1
with:
directories: src
- name: Upload code coverage data to codecov.io
# Only run for 'main' branch running on 'Linux' with the latest version of Julia
if: |
github.ref_name == 'main' &&
runner.os == env.codecov-os &&
matrix.arch == env.codecov-arch &&
matrix.version == env.codecov-version
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true
verbose: true
build-docs:
name: Build Documentation
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Julia environment
uses: julia-actions/setup-julia@v2
with:
version: '1.11'
- name: Set up Julia caches
uses: julia-actions/cache@v2
with:
cache-name: ${{ github.repository }}-${{ github.workflow }}-${{ github.job }}-julia-${{ hashFiles('.github/workflows/CI.yml') }}
- name: Install dependencies
run: julia --project=docs --color=yes -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy documentation
run: julia --project=docs --color=yes --compile=min -O0 docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}