mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 02:02:53 +01:00
Fix job names v2
This commit is contained in:
parent
f15bc7a0d9
commit
2ba9edf492
1 changed files with 6 additions and 6 deletions
12
.github/workflows/workflow.yml
vendored
12
.github/workflows/workflow.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
run: npm run test
|
||||
|
||||
# End to end save and restore
|
||||
test-save-relative:
|
||||
test-save:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
@ -63,8 +63,8 @@ jobs:
|
|||
with:
|
||||
key: test-${{ runner.os }}-${{ github.run_id }}
|
||||
path: test-cache
|
||||
test-restore-relative:
|
||||
needs: test-save-relative
|
||||
test-restore:
|
||||
needs: test-save
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
@ -82,7 +82,7 @@ jobs:
|
|||
run: __tests__/verify-cache-files.sh ${{ runner.os }} test-cache
|
||||
|
||||
# End to end save and restore with relative paths
|
||||
test-save:
|
||||
test-save-relative:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
@ -98,8 +98,8 @@ jobs:
|
|||
with:
|
||||
key: test-relative-${{ runner.os }}-${{ github.run_id }}
|
||||
path: ~test-cache
|
||||
test-restore:
|
||||
needs: test-save
|
||||
test-restore-relative:
|
||||
needs: test-save-relative
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
|
Loading…
Reference in a new issue