Add filtering for PRs to match issue filtering behavior #1149
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: Run Tox | |
| # yamllint disable rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - legacy | |
| tags: | |
| - v* | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Tox tests | |
| id: test | |
| uses: fedora-python/tox-github-action@main | |
| with: | |
| tox_env: py312,py313,lint,isort,black | |
| dnf_install: >- | |
| --repo fedora --repo updates | |
| krb5-devel | |
| - name: Coveralls | |
| uses: AndreMiras/coveralls-python-action@develop |