Skip to content

Commit

Permalink
Try a different matrix syntax, refs #169
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Aug 20, 2023
1 parent 14a91ef commit 7ca9231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
pydantic: ["1.10.2", ">=2.0.0"]
pydantic: ["==1.10.2", ">=2.0.0"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
pip install -e '.[test]'
pip install pydantic==${{ matrix.pydantic }}
pip install pydantic${{ matrix.pydantic }}
- name: Run tests
run: |
pytest
Expand Down

0 comments on commit 7ca9231

Please sign in to comment.