Skip to content

Commit

Permalink
actions: fix test action
Browse files Browse the repository at this point in the history
Signed-off-by: Heiko Thiery <[email protected]>
  • Loading branch information
hthiery committed Oct 29, 2024
1 parent 09df6f7 commit ab452cd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- name: Set up Python $${{ matrix.python-version }}
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py install
python -m pip install --upgrade pip python-setuptools
pip install pytest
- name: Test with pytest
run: |
Expand Down

0 comments on commit ab452cd

Please sign in to comment.