Remove Python 3.9 from test matrix due to dependency constraints #134
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
|
Check failure on line 1 in .github/workflows/coverage.yaml
|
||
| name: Post Coverage Commit | ||
| on: | ||
| workflow_run: | ||
| workflows: ["Pytest"] | ||
| types: | ||
| - completed | ||
| jobs: | ||
| coverage: | ||
| runs-on: ubuntu-latest | ||
| if: github.event.workflow_run.event == "pull_request" && github.event.workflow_run.conclusion == "success" | ||
| permissions: | ||
| pull-requests: write | ||
| contents: write | ||
| actions: read | ||
| steps: | ||
| - name: Python Coverage Comment | ||
| uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc | ||
| with: | ||
| GITHUB_TOKEN: ${{ github.token }} | ||
| GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }} | ||