Skip to content

Fix/coverage

Fix/coverage #19

Workflow file for this run

name: Test src
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- uses: ./.github/actions/test
- name: Check Coverage
shell: bash
run: |
grep total < coverage.out | grep '100.0%'