mirror of
https://github.com/fedora-python/tox-current-env.git
synced 2024-12-26 09:56:13 +01:00
41 lines
855 B
YAML
41 lines
855 B
YAML
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@v2
|
|
- 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)
|
|
- py36-tox313
|
|
- py37-tox313
|
|
- py38-tox315
|
|
- py39-tox315
|
|
|
|
- py36-toxrelease
|
|
- py37-toxrelease
|
|
- py38-toxrelease
|
|
- py39-toxrelease
|
|
|
|
- py36-toxmaster
|
|
- py37-toxmaster
|
|
- py38-toxmaster
|
|
- py39-toxmaster
|
|
|
|
# Use GitHub's Linux Docker host
|
|
runs-on: ubuntu-latest
|