From 5e8bd5d76c3ab46177cbbed00013eb71e80dc907 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Mon, 30 Oct 2023 13:58:08 -0300 Subject: [PATCH] [ci] Move QA checks as last step --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 301b83d2..f119bb4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,10 +92,6 @@ jobs: pip install -U -r requirements-test.txt pip install tox docutils pygments twine - - name: QA checks - run: | - ./run-qa-checks - - name: Tests run: | tox -e ${{ matrix.env.TOXENV }} @@ -110,6 +106,10 @@ jobs: python-${{ matrix.env.env }} COVERALLS_PARALLEL: true + - name: QA checks + run: | + ./run-qa-checks + coveralls: name: Finish Coveralls needs: build