File tree Expand file tree Collapse file tree 3 files changed +36
-23
lines changed Expand file tree Collapse file tree 3 files changed +36
-23
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+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ with :
15+ fetch-depth : 0
16+ - uses : julia-actions/setup-julia@v1
17+ with :
18+ version : 1
19+ - uses : actions/cache@v1
20+ env :
21+ cache-name : cache-artifacts
22+ with :
23+ path : ~/.julia/artifacts
24+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
25+ restore-keys : |
26+ ${{ runner.os }}-test-${{ env.cache-name }}-
27+ ${{ runner.os }}-test-
28+ ${{ runner.os }}-
29+ - uses : julia-actions/julia-buildpkg@v1
30+ - uses : julia-actions/julia-runtest@v1
31+ - uses : julia-actions/julia-processcoverage@v1
32+ - uses : codecov/codecov-action@v1
33+ with :
34+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ include("rulesets.jl")
1919include (" nf.jl" )
2020include (" interface.jl" )
2121include (" fuzz.jl" )
22- if haskey (ENV , " TRAVIS" )
22+
23+ if haskey (ENV , " CI" )
2324 include (" benchmark.jl" )
2425end
You can’t perform that action at this time.
0 commit comments