-
Notifications
You must be signed in to change notification settings - Fork 5
112 lines (82 loc) · 3.08 KB
/
CI_Build.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
name: CI
on:
push: # run on push to master
branches: [ master ]
pull_request: # run on PR against master
branches: [ master ]
workflow_dispatch: # run on button-press in Actions tab
concurrency: # only allow the most recent workflow to execute
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env: # environment variables
julia_version: '1.7.2' # julia version to use on all runners (except cross-platform)
jobs: # run in parallel within workflow
unit-and-doc-tests:
runs-on: ubuntu-latest
timeout-minutes: 30
steps: # run in series within job
- name: checkout commit
uses: actions/checkout@master
- name: set up Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ env.julia_version }}
- name: build package
uses: julia-actions/julia-buildpkg@latest
- name: install dependencies
run: julia --project --color=yes -e 'import Pkg; Pkg.add.(["Documenter", "Coverage"])'
- name: test # run the unit tests
run: julia --project --color=yes --code-coverage -e 'import Pkg; Pkg.test(coverage=true)'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- name: process test coverage
uses: julia-actions/julia-processcoverage@v1
- name: upload coverage report
uses: codecov/codecov-action@v2
with:
verbose: true
porousmaterials: # cross-test PorousMaterials for breaking changes
needs: unit-and-doc-tests
runs-on: ubuntu-latest
continue-on-error: true # if this job fails, CI will still pass (but we will know about a compatibility issue)
timeout-minutes: 30
steps:
- name: check out commit
uses: actions/checkout@v2
- name: set up Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ env.julia_version }}
- name: test # use the cross_dep.jl script to run unit/doc tests on the dev branch of the specified package
run: julia --project --color=yes ./test/cross_dep.jl PorousMaterials
porematmod:
needs: unit-and-doc-tests
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 30
steps:
- name: checkout commit
uses: actions/checkout@v2
- name: set up Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ env.julia_version }}
- name: test
run: julia --project --color=yes ./test/cross_dep.jl PoreMatMod
aqua-jl:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: checkout commit
uses: actions/checkout@v2
- name: set up Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ env.julia_version }}
- name: build package
uses: julia-actions/julia-buildpkg@latest
- name: install dependencies
run: julia --project --color=yes -e 'import Pkg; Pkg.add.(["Aqua"])'
- name: Aqua.jl
run: julia --project --color=yes ./test/aqua.jl