File tree 3 files changed +40
-62
lines changed
3 files changed +40
-62
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ tags : ' *'
10
+ jobs :
11
+ test :
12
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+ os : [ubuntu-latest, windows-latest, macOS-latest]
18
+ version : ['1.6', '1']
19
+ arch : [x64, x86]
20
+ include :
21
+ - os : ubuntu-latest
22
+ prefix : xvfb-run
23
+ exclude :
24
+ - os : macOS-latest
25
+ arch : x86
26
+ steps :
27
+ - uses : actions/checkout@v4
28
+ - uses : julia-actions/setup-julia@v1
29
+ with :
30
+ version : ${{ matrix.version }}
31
+ arch : ${{ matrix.arch }}
32
+ - uses : julia-actions/cache@v1
33
+ - uses : julia-actions/julia-buildpkg@v1
34
+ - uses : julia-actions/julia-runtest@v1
35
+ with :
36
+ prefix : ${{ matrix.prefix }}
37
+ - uses : julia-actions/julia-processcoverage@v1
38
+ - uses : codecov/codecov-action@v1
39
+ with :
40
+ file : lcov.info
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments