WIP dependency_groups #58
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
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 1' # every Monday | |
name: Run tox tests | |
jobs: | |
tox_test: | |
name: tox test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tox tests | |
id: test | |
uses: fedora-python/tox-github-action@main | |
with: | |
tox_env: ${{ matrix.tox_env }} | |
strategy: | |
matrix: | |
tox_env: | |
# This information is repeated in tox.ini | |
# (see https://github.com/fedora-python/tox-github-action/issues/8) | |
# Generate it by: tox -l | sed "s/^/- /" | |
- py36-tox324 | |
- py36-tox3 | |
- py37-tox324 | |
- py37-tox3 | |
- py37-tox4 | |
- py38-tox324 | |
- py38-tox3 | |
- py38-tox4 | |
- py39-tox324 | |
- py39-tox3 | |
- py39-tox4 | |
- py310-tox324 | |
- py310-tox3 | |
- py310-tox4 | |
- py311-tox324 | |
- py311-tox3 | |
- py311-tox4 | |
# Use GitHub's Linux Docker host | |
runs-on: ubuntu-latest |