split tox jobs

This commit is contained in:
Mathieu Dupuy 2024-07-25 00:08:46 +02:00
parent 61be51e9f3
commit c499c313c2
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A
2 changed files with 34 additions and 16 deletions

View file

@ -21,7 +21,7 @@ jobs:
- name: Install Test dependencies
run: pip install tox
- name: Test
run: tox
run: tox -e py
- name: Install Coveralls
if: github.event_name == 'push'
run: pip install coveralls
@ -46,3 +46,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github --finish
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install tox
run: pip install tox
- name: Lint
run: tox -e flake8,mypy,isort