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

Commit

Permalink
feat: update cache from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ASuciuX committed Dec 10, 2023
1 parent 18c5596 commit ad5b34a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/log-mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
save_cache:
runs-on: ubuntu-latest

# test
steps:
- name: Run logging mutants from actions
uses: ASuciuX/actions/mutation-testing/logger@feat/mutation-testing
Expand Down
10 changes: 5 additions & 5 deletions stx-genesis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ fn fn_option_remove() -> Option<u8> {
Some(2)
}

fn fn_option_remove_test() -> Option<u8> {
// comment in order to run mutants on this fn
Some(3)
}

fn fn_option_remove_clone() -> Option<u8> {
Some(3)
}
Expand All @@ -124,11 +129,6 @@ fn fn_int_remove() -> u32 {
12
}

fn fn_int_remove_test() -> u32 {
// comment in order to run mutants on this fn
13
}

fn read_deflated_zonefiles_test_clone(
deflate_bytes: &'static [u8],
) -> Box<dyn Iterator<Item = GenesisZonefile>> {
Expand Down

0 comments on commit ad5b34a

Please sign in to comment.