Skip to content

Commit cd6cd1a

Browse files
authored
Create julianightly.yml
1 parent 2cd3fab commit cd6cd1a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/julianightly.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

0 commit comments

Comments
 (0)