Bump coverage from 7.6.3 to 7.6.4 #63
Workflow file for this run
This file contains 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: tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
# Only allow one instance of this workflow for each PR. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: | | |
3.10 | |
3.11 | |
3.12 | |
allow-prereleases: true | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements.txt | |
setup.cfg | |
tox.ini | |
- run: python -m pip install tox | |
- run: | | |
git config --global init.defaultBranch main | |
git config --global user.email "you@example.com" | |
git config --global user.name "Your Name" | |
- run: tox run-parallel --parallel-no-spinner | |
env: | |
FORCE_COLOR: true |