aiogram/.github/workflows/tox.yml
2021-09-07 07:34:11 +02:00

16 lines
360 B
YAML

name: tox
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py