First version #15
This file contains hidden or 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
| # Runs all tests and creates a coverage report | |
| name: Coverage | |
| on: # Runs on all push events to master branch and any push related to a pull request | |
| push: | |
| branches: | |
| - master | |
| pull_request: # Check requried coverage before able to merge | |
| jobs: | |
| coverage: | |
| uses: pylhc/.github/.github/workflows/coverage.yml@master | |
| with: | |
| src-dir: ir_amplitude_detuning | |
| pytest-options: --cov=examples | |
| secrets: inherit |