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

Commit

Permalink
feat: append 2 simple lines to check overwrite cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ASuciuX committed Dec 1, 2023
1 parent dfb8fde commit cd0801d
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,17 @@ jobs:
- name: Print caught mutants
run: cat mutation-testing/packages-output/pox-locking/missed.txt
- run: cargo install cargo-mutants
- name: Update stable mutants with modified functions
run: ./git-diff.sh
working-directory: mutation-testing/scripts
- name: Print updated missed mutants
run: cat mutation-testing/packages-output/pox-locking/missed.txt
# - name: Update stable mutants with modified functions
# run: ./git-diff.sh
# working-directory: mutation-testing/scripts
# - name: Print updated missed mutants
# run: cat mutation-testing/packages-output/pox-locking/missed.txt
- name: Append 2 line to one file
run: |
echo "text 1" >> missed.txt
echo "text 2" >> missed.txt
working-directory: mutation-testing/packages-output/pox-locking

- name: Cache mutants-initial folder
uses: actions/cache/save@v3
with:
Expand Down

0 comments on commit cd0801d

Please sign in to comment.