File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : JuliaNightly
2
+ # Nightly Scheduled Julia Nightly Run
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 2 * * 0' # Daily at 2 AM UTC every Sunday
6
+ jobs :
7
+ test :
8
+ name : Julia Nightly - Ubuntu - x64
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v3
12
+ - uses : julia-actions/setup-julia@v1
13
+ with :
14
+ version : nightly
15
+ arch : x64
16
+ - uses : actions/cache@v3
17
+ env :
18
+ cache-name : cache-artifacts
19
+ with :
20
+ path : ~/.julia/artifacts
21
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
22
+ restore-keys : |
23
+ ${{ runner.os }}-test-${{ env.cache-name }}-
24
+ ${{ runner.os }}-test-
25
+ ${{ runner.os }}-
26
+ - uses : julia-actions/julia-buildpkg@latest
27
+ - name : " Run test without coverage report"
28
+ uses : julia-actions/julia-runtest@v1
29
+ with :
30
+ coverage : false
You can’t perform that action at this time.
0 commit comments