Skip to content

Commit

Permalink
Tox runners
Browse files Browse the repository at this point in the history
  • Loading branch information
nycholas committed Sep 27, 2024
1 parent 1a03198 commit a6f0299
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/on_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install tox
- name: Run tox
- name: Run tox (Style)
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.12' }}
run: |
tox -e py,py-async,style -p all
tox -e style -p all
- name: Run tox (Type checkers)
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.12' }}
run: |
Expand All @@ -47,6 +48,9 @@ jobs:
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.12' }}
run: |
tox -e security-safety,security-bandit -p all
- name: Run tox (Tests)
run: |
tox -e py,py-async -p all
- name: Run tox (Docs)
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.12' }}
run: |
Expand Down

0 comments on commit a6f0299

Please sign in to comment.