python-dependency-injector/.github/workflows/tests.yml

20 lines
426 B
YAML
Raw Normal View History

2021-01-26 01:11:34 +03:00
name: Tests
on: push
jobs:
test-py39:
name: Run tests
runs-on: ubuntu-latest
2021-01-26 01:18:34 +03:00
strategy:
matrix:
2021-01-26 01:21:30 +03:00
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
2021-01-26 01:11:34 +03:00
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
2021-01-26 01:18:34 +03:00
python-version: ${{ matrix.python-version }}
2021-01-26 01:11:34 +03:00
- run: pip install tox
- run: tox
env:
2021-01-26 01:18:34 +03:00
TOXENV: py${{ matrix.python-version }}