From e83510c22623d55fdd131eb00715e9d119478f0f Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 30 Sep 2024 15:13:14 +1000 Subject: [PATCH] Re-order linting and test steps --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ba3b8d9a..e002eb19 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,10 +24,10 @@ jobs: run: | python3 -m ensurepip --upgrade pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt + - name: Test with pytest + run: | + pytest - name: Lint with pre-commit hook continue-on-error: true # XXX temporary, until all code linted run: | pre-commit run --all-files - - name: Test with pytest - run: | - pytest