Skip to content

Commit f58b884

Browse files
authored
CI.yml fix
1 parent 07a0e45 commit f58b884

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ on:
1515
- Project.toml
1616
jobs:
1717
test:
18-
name: Julia $ - $ - $ - $
19-
runs-on: $
18+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
19+
runs-on: ${{ matrix.os }}
2020
strategy:
2121
fail-fast: false
2222
matrix:
@@ -33,18 +33,18 @@ jobs:
3333
- uses: actions/checkout@v2
3434
- uses: julia-actions/setup-julia@v1
3535
with:
36-
version: $
37-
arch: $
36+
version: ${{ matrix.version }}
37+
arch: ${{ matrix.arch }}
3838
- uses: actions/cache@v1
3939
env:
4040
cache-name: cache-artifacts
4141
with:
4242
path: ~/.julia/artifacts
43-
key: $-test-$-$
43+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
4444
restore-keys: |
45-
$-test-$-
46-
$-test-
47-
$-
45+
${{ runner.os }}-test-${{ env.cache-name }}-
46+
${{ runner.os }}-test-
47+
${{ runner.os }}-
4848
- uses: julia-actions/julia-buildpkg@v1
4949
- uses: julia-actions/julia-runtest@v1
5050
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)