File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : JuliaNightly
2
+ # Nightly Version of Julia.
3
+ # Runs on PRs and pushes to `master`, but seperate workflow to `CI`
4
+ # to avoid inclusion in nightly cron build with failure notifications.
5
+ on :
6
+ push :
7
+ branches : [master]
8
+ tags : ["*"]
9
+ pull_request :
10
+ jobs :
11
+ test :
12
+ name : Julia Nightly - Ubuntu - x64
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - uses : julia-actions/setup-julia@v1
17
+ with :
18
+ version : nightly
19
+ arch : x64
20
+ - uses : actions/cache@v2
21
+ env :
22
+ cache-name : julia-nightly-cache-artifacts
23
+ with :
24
+ path : ~/.julia/artifacts
25
+ key : ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
26
+ restore-keys : |
27
+ ${{ env.cache-name }}-
28
+ - uses : julia-actions/julia-buildpkg@latest
29
+ - uses : julia-actions/julia-runtest@latest
30
+ - uses : julia-actions/julia-processcoverage@v1
31
+ - uses : codecov/codecov-action@v1
32
+ with :
33
+ file : lcov.info
You can’t perform that action at this time.
0 commit comments