Skip to content

Commit 7894958

Browse files
committed
fixing github workflows
Signed-off-by: Pedro Escaleira <pedroescaleira@hotmail.com>
1 parent 80c4549 commit 7894958

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/python-ci.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,17 @@ jobs:
1111
name: "Python ${{ matrix.python-version }}"
1212
runs-on: "ubuntu-latest"
1313

14-
15-
strategy:
16-
matrix:
17-
python-version: ["3.9"]
18-
1914
steps:
20-
- uses: "actions/checkout@v2"
21-
- uses: "actions/setup-python@v2"
15+
- uses: "actions/checkout@v4"
16+
- uses: "actions/setup-python@v5"
2217
with:
23-
python-version: "${{ matrix.python-version }}"
18+
python-version: '3.9'
2419
- name: Install dependencies
2520
run: |
2621
pip install pipenv
2722
pip install build
28-
pipenv install --dev
23+
pipenv install --dev --system
24+
pip install setuptools==70.3.0
2925
- name: Test
3026
run: |
3127
pipenv run pytest

0 commit comments

Comments
 (0)