File tree Expand file tree Collapse file tree 1 file changed +40
-3
lines changed Expand file tree Collapse file tree 1 file changed +40
-3
lines changed Original file line number Diff line number Diff line change 1
- name : Build Terminology PDF
1
+ name : CI
2
2
on :
3
3
pull_request :
4
4
push :
5
5
branches :
6
- - main
6
+ - master
7
7
tags : ' *'
8
8
workflow_dispatch :
9
9
jobs :
10
- build_latex :
10
+ test :
11
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
12
+ runs-on : ${{ matrix.os }}
13
+ strategy :
14
+ fail-fast : false
15
+ matrix :
16
+ version :
17
+ - ' nightly'
18
+ os :
19
+ - ubuntu-latest
20
+ - macOS-latest
21
+ - windows-latest
22
+ arch :
23
+ - x64
24
+ steps :
25
+ - uses : actions/checkout@v2
26
+ - uses : julia-actions/setup-julia@v1
27
+ with :
28
+ version : ${{ matrix.version }}
29
+ arch : ${{ matrix.arch }}
30
+ - uses : actions/cache@v1
31
+ env :
32
+ cache-name : cache-artifacts
33
+ with :
34
+ path : ~/.julia/artifacts
35
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
36
+ restore-keys : |
37
+ ${{ runner.os }}-test-${{ env.cache-name }}-
38
+ ${{ runner.os }}-test-
39
+ ${{ runner.os }}-
40
+ - uses : julia-actions/julia-buildpkg@v1
41
+ - uses : julia-actions/julia-runtest@v1
42
+ - uses : julia-actions/julia-processcoverage@v1
43
+ - uses : codecov/codecov-action@v1
44
+ with :
45
+ file : lcov.info
46
+
47
+ build_terminology_latex :
11
48
runs-on : ubuntu-latest
12
49
steps :
13
50
- name : Set up Git repository
You can’t perform that action at this time.
0 commit comments