Skip to content

Commit c923365

Browse files
committed
Add JuliaPre workflow
1 parent e8a80c2 commit c923365

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/JuliaPre.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: JuliaPre
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
# needed to allow julia-actions/cache to delete old caches that it has created
10+
permissions:
11+
actions: write
12+
contents: read
13+
14+
jobs:
15+
test:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: julia-actions/setup-julia@v2
20+
with:
21+
version: 'pre' # pre-release
22+
arch: x64
23+
- uses: julia-actions/cache@v2
24+
- uses: julia-actions/julia-buildpkg@v1
25+
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)