This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
feat: remove extras #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mutants | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- next | |
- deployer/testing-shell-script | |
paths-ignore: | |
- '**.md' | |
- '**.yml' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cache_mutants: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the latest code | |
id: git_checkout | |
uses: actions/checkout@v3 | |
- name: Cache mutants-initial folder | |
uses: actions/cache@v3 | |
with: | |
path: mutants-initial | |
key: mutants-initial | |
- name: Print caught mutants | |
run: cat mutants-initial/caught.txt | |
- name: Print missed mutants | |
run: cat mutants-initial/missed.txt | |
- name: Print unviable mutants | |
run: cat mutants-initial/unviable.txt | |
- name: Print timeout mutants | |
run: cat mutants-initial/timeout.txt |