Skip to content

Commit

Permalink
Fix CI syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianeboyd committed Nov 20, 2023
1 parent 311f111 commit 0d3e061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
- name: Run mypy for Pydantic v2
run: |
python -m mypy confection
if: matrix.python_version != '3.6' and matrix.python_version != '3.7'
if: matrix.python_version != '3.6' && matrix.python_version != '3.7'

- name: Run mypy for Pydantic v1.10
run: |
python -m pip install -U pydantic==1.10.*
python -m mypy confection
if: matrix.python_version != '3.6' and matrix.python_version != '3.7'
if: matrix.python_version != '3.6' && matrix.python_version != '3.7'

- name: Delete source directory
run: rm -rf confection
Expand Down

0 comments on commit 0d3e061

Please sign in to comment.