1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-24 17:16:13 +01:00
github.com_fedora-python_to.../.github/workflows/main.yaml

43 lines
978 B
YAML
Raw Normal View History

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@master
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)
2022-02-09 10:28:06 +01:00
# Generate it by: tox -l | sed "s/^/- /"
- py36-toxrelease
- py36-toxmaster
2022-02-18 19:31:02 +01:00
- py36-tox315
2022-02-09 10:28:06 +01:00
- py37-toxrelease
- py37-toxmaster
2022-02-18 19:31:02 +01:00
- py37-tox315
2022-02-09 10:28:06 +01:00
- py38-toxrelease
- py38-toxmaster
2022-02-18 19:31:02 +01:00
- py38-tox315
2022-02-09 10:28:06 +01:00
- py39-toxrelease
2020-08-12 15:23:55 +02:00
- py39-toxmaster
2022-02-18 19:31:02 +01:00
- py39-tox315
2022-02-09 10:28:06 +01:00
- py310-toxrelease
- py310-toxmaster
2022-02-18 19:31:02 +01:00
- py310-tox315
# Use GitHub's Linux Docker host
runs-on: ubuntu-latest