mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
GitHub Action to run tox
This commit is contained in:
parent
358ecc7821
commit
97e4cf6344
1 changed files with 16 additions and 0 deletions
16
.github/workflows/tox.yml
vendored
Normal file
16
.github/workflows/tox.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue