Rename PinSignature to IOSignature #175
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
| # This workflow will install dependencies, create coverage tests and run Pytest Coverage Comment | |
| # For more information see: https://github.com/MishaKav/pytest-coverage-comment/ | |
| name: pytest-coverage-comment | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| # https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
| # `contents` is for permission to the contents of the repository. | |
| # `pull-requests` is for permission to pull request | |
| permissions: | |
| contents: write | |
| checks: write | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up PDM | |
| uses: pdm-project/setup-pdm@v4 | |
| - name: Generate overrides to use current branch if PR | |
| if: github.event_name == 'pull_request' | |
| run: | | |
| pdm run tools/gen_overrides.py ${{github.head_ref}} > overrides.txt | |
| echo "Generated overrides:" | |
| cat overrides.txt | |
| - name: Relock PDM | |
| if: github.event_name != 'pull_request' | |
| run: pdm lock -d | |
| - name: Relock PDM (PR) | |
| if: github.event_name == 'pull_request' | |
| run: pdm lock -d --override overrides.txt | |
| - name: Install dependencies | |
| run: | | |
| pdm install | |
| - name: Build coverage file | |
| run: | | |
| pdm run pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=app tests/ | tee pytest-coverage.txt | |
| - name: Pytest coverage comment | |
| uses: MishaKav/pytest-coverage-comment@main | |
| with: | |
| pytest-coverage-path: ./pytest-coverage.txt | |
| junitxml-path: ./pytest.xml |