From 63a51fd0049e68f3f04e6d799d7974eb5a76ddc1 Mon Sep 17 00:00:00 2001 From: Stella Laurenzo Date: Mon, 5 Feb 2024 18:06:06 -0800 Subject: [PATCH] Fix syntax --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a04365d07..4ba366127 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,17 +45,17 @@ jobs: pip install -e core[testing] -e serving[testing] - name: Run core tests - if: !cancelled() + if: {{ !cancelled() }} run: | pytest -n 4 core/ - name: Run serving tests - if: !cancelled() + if: {{ !cancelled() }} run: | pytest -n 4 serving/ - name: MyPy Type Checking - if: !cancelled() + if: {{ !cancelled() }} run: | pip install -r mypy-requirements.txt mypy serving/