Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident committed Feb 6, 2024
1 parent 85aea9a commit 63a51fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit 63a51fd

Please sign in to comment.