Merge pull request #17 from Tranquility2/Tranquility2-patch-1 #77
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: Coverage | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
workflow_dispatch: | |
jobs: | |
coverage: | |
name: Coverage Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare Environment | |
uses: ./.github/actions/prepare-environment | |
with: | |
python-version: 3.11 | |
setup-type: test | |
- name: Check code coverage | |
run: | | |
make coverage | |
- name: Report Coveralls | |
if: github.ref == 'refs/heads/master' | |
uses: coverallsapp/github-action@v2 |