Skip to content

Commit

Permalink
Fix typo PackageTest.yml (#264)
Browse files Browse the repository at this point in the history
* Fix typo PackageTest.yml

The CI wasn't correctly identifying the different python versions in the matrix.

* Update PackageTest.yml
  • Loading branch information
djperrefort committed Jul 11, 2023
1 parent 4d83048 commit 2260306
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/PackageTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: |
pip install poetry
poetry env use python${{ matrix.python_version }}
poetry env use python${{ matrix.python-version }}
- name: Install dependencies
run: poetry install --with tests
Expand Down

0 comments on commit 2260306

Please sign in to comment.