Skip to content

Commit e4305cb

Browse files
committed
disable 'pre' test
1 parent 8d23b78 commit e4305cb

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/JuliaPre.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: JuliaPre
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
4+
workflow_dispatch:
5+
# 'pre' currently resolves to 1.12, so no point running it again.
6+
# This workflow can be reenabled when 'pre' points to 1.13.
7+
8+
# push:
9+
# branches:
10+
# - main
11+
# pull_request:
812

913
# needed to allow julia-actions/cache to delete old caches that it has created
1014
permissions:
@@ -15,11 +19,10 @@ jobs:
1519
test:
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
1923
- uses: julia-actions/setup-julia@v2
2024
with:
2125
version: 'pre' # pre-release
22-
arch: x64
2326
- uses: julia-actions/cache@v2
2427
- uses: julia-actions/julia-buildpkg@v1
2528
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)