Skip to content

Commit 3c67a83

Browse files
committed
Set min version & update to julia-actions/cache
1 parent 4471a73 commit 3c67a83

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

.github/workflows/ci.yml

+3-12
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version:
20-
- '1.10' # Replace this with the minimum Julia version that your package supports.
20+
- 'min' # Minimum Julia version that Zygote supports.
2121
- '1' # automatically expands to the latest stable 1.x release of Julia
2222
- 'nightly'
2323
os:
@@ -33,20 +33,11 @@ jobs:
3333
# arch: x64
3434
steps:
3535
- uses: actions/checkout@v3
36-
- uses: julia-actions/setup-julia@v1
36+
- uses: julia-actions/setup-julia@v2
3737
with:
3838
version: ${{ matrix.version }}
3939
arch: ${{ matrix.arch }}
40-
- uses: actions/cache@v3
41-
env:
42-
cache-name: cache-artifacts
43-
with:
44-
path: ~/.julia/artifacts
45-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
46-
restore-keys: |
47-
${{ runner.os }}-test-${{ env.cache-name }}-
48-
${{ runner.os }}-test-
49-
${{ runner.os }}-
40+
- uses: julia-actions/cache@v2
5041
- uses: julia-actions/julia-buildpkg@v1
5142
env:
5243
JULIA_PKG_SERVER: ""

0 commit comments

Comments
 (0)