Skip to content

Commit 63a51fd

Browse files
Fix syntax
1 parent 85aea9a commit 63a51fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ jobs:
4545
pip install -e core[testing] -e serving[testing]
4646
4747
- name: Run core tests
48-
if: !cancelled()
48+
if: {{ !cancelled() }}
4949
run: |
5050
pytest -n 4 core/
5151
5252
- name: Run serving tests
53-
if: !cancelled()
53+
if: {{ !cancelled() }}
5454
run: |
5555
pytest -n 4 serving/
5656
5757
- name: MyPy Type Checking
58-
if: !cancelled()
58+
if: {{ !cancelled() }}
5959
run: |
6060
pip install -r mypy-requirements.txt
6161
mypy serving/

0 commit comments

Comments
 (0)