Comparing comments from submissions #478
Workflow file for this run
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
| name: Check that all dependencies are in coverage report | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - ".github/workflows/verify-coverage-report.yml" | |
| - "./scripts/checkCoverage.py" | |
| - "**/pom.xml" | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - ".github/workflows/verify-coverage-report..yml" | |
| - "./scripts/checkCoverage.py" | |
| - "**/pom.xml" | |
| jobs: | |
| check_coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v5 | |
| - name: Run script | |
| working-directory: .github/workflows/scripts | |
| run: | | |
| python checkCoverage.py |