Skip to content

Commit

Permalink
👷 Fixing mutation testing pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jossmoff committed Nov 12, 2023
1 parent 5397fb5 commit 51199b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
uses: actions/cache/restore@v3
with:
path: .mutmut-cache
key: mutmut-cache-${{ github.head_ref }}-${{ hashFiles('bookshelf/*.py') }}
key: mutmut-cache-${{ github.ref_name }}-${{ hashFiles('bookshelf/*.py') }}
restore-keys: |
mutmut-cache-${{ github.ref_name || 'main'}}
mutmut-cache-${{ github.ref_name }}
mutmut-cache-main
- name: 🦠 Run Mutation Tests
Expand All @@ -57,4 +57,4 @@ jobs:
uses: actions/cache/save@v3
with:
path: .mutmut-cache
key: mutmut-cache-${{ github.head_ref }}-${{ hashFiles('bookshelf/*.py') }}
key: mutmut-cache-${{ github.ref_name }}-${{ hashFiles('bookshelf/*.py') }}

0 comments on commit 51199b6

Please sign in to comment.