From 53361b20d97fadef79a6ac68cf0bb258432cfb29 Mon Sep 17 00:00:00 2001 From: Alif Be Date: Mon, 27 Nov 2023 14:50:54 +0100 Subject: [PATCH] Always run test and syntax check documentation --- .github/workflows/pyscal.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pyscal.yml b/.github/workflows/pyscal.yml index fff6ae6e..3d0f1d50 100644 --- a/.github/workflows/pyscal.yml +++ b/.github/workflows/pyscal.yml @@ -77,11 +77,13 @@ jobs: mypy pyscal - name: Run tests + if: ${{ always() }} run: | python -c "import pyscal" pytest -n auto --strict-markers --hypothesis-profile ci tests/ - name: Syntax check documentation + if: ${{ always() }} run: | rstcheck -r docs