Skip to content

Commit 27dbb87

Browse files
authored
Merge pull request #32 from ATNoG/main
Fixed #31
2 parents 80c4549 + ed019ce commit 27dbb87

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/python-ci.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,20 @@ on:
88

99
jobs:
1010
tests:
11-
name: "Python ${{ matrix.python-version }}"
11+
name: "Python 3.9"
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@11bd71901bbe5b1630ceea73d27597364c9af683" # v4.2.2
16+
- uses: "actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065" # v5.6.0
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

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ Current sdk version conforms to the [Serverless Workflow specification v0.8](htt
1919
- pipenv required `pip install pipenv`
2020

2121
```
22-
pipenv install --dev
22+
pipenv install --dev
23+
24+
pipenv run pip install 'setuptools==70.3.0'
2325
2426
pipenv shell
2527

0 commit comments

Comments
 (0)