Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
feat: added base branch name to mutants logging after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ASuciuX committed Dec 8, 2023
1 parent 08f002a commit 9b27bb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/log-mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/cache/restore@v3
with:
path: ./mutation-testing/packages-output
key: mutants-stable-develop
key: mutants-stable-${{ github.ref_name }}

- name: Install cargo-mutants crate
run: cargo install cargo-mutants
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
continue-on-error: true
run: |
gh extension install actions/gh-actions-cache
gh actions-cache delete "mutants-stable-develop" --confirm
gh actions-cache delete "mutants-stable-${{ github.ref_name }}" --confirm
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -95,7 +95,7 @@ jobs:
uses: actions/cache/save@v3
with:
path: ./mutation-testing/packages-output
key: mutants-stable-develop
key: mutants-stable-${{ github.ref_name }}

# cache_mutants:
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 9b27bb8

Please sign in to comment.