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

Deployer/testing shell script #1

Deployer/testing shell script

Deployer/testing shell script #1

Workflow file for this run

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