From a6f02997fee2c16be8910defa072e58f49ee2b0d Mon Sep 17 00:00:00 2001 From: Nycholas de Oliveira e Oliveira Date: Fri, 27 Sep 2024 16:31:17 -0300 Subject: [PATCH] Tox runners --- .github/workflows/on_update.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on_update.yml b/.github/workflows/on_update.yml index 2574a5ca..72ed4cc2 100644 --- a/.github/workflows/on_update.yml +++ b/.github/workflows/on_update.yml @@ -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: | @@ -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: |