We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8a80c2 commit c923365Copy full SHA for c923365
.github/workflows/JuliaPre.yml
@@ -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