We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c4549 commit 7894958Copy full SHA for 7894958
.github/workflows/python-ci.yml
@@ -11,21 +11,17 @@ jobs:
11
name: "Python ${{ matrix.python-version }}"
12
runs-on: "ubuntu-latest"
13
14
-
15
- strategy:
16
- matrix:
17
- python-version: ["3.9"]
18
19
steps:
20
- - uses: "actions/checkout@v2"
21
- - uses: "actions/setup-python@v2"
+ - uses: "actions/checkout@v4"
+ - uses: "actions/setup-python@v5"
22
with:
23
- python-version: "${{ matrix.python-version }}"
+ python-version: '3.9'
24
- name: Install dependencies
25
run: |
26
pip install pipenv
27
pip install build
28
- pipenv install --dev
+ pipenv install --dev --system
+ pip install setuptools==70.3.0
29
- name: Test
30
31
pipenv run pytest
0 commit comments