Add Tree-Sitter-based Language Module for Python #425
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@v4 | |
| - name: Run script | |
| working-directory: .github/workflows/scripts | |
| run: | | |
| python checkCoverage.py |