Skip to content

Fixed #31 #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,20 @@ on:

jobs:
tests:
name: "Python ${{ matrix.python-version }}"
name: "Python 3.9"
runs-on: "ubuntu-latest"


strategy:
matrix:
python-version: ["3.9"]

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v4.2.2
- uses: "actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065" # v5.6.0
with:
python-version: "${{ matrix.python-version }}"
python-version: '3.9'
- name: Install dependencies
run: |
pip install pipenv
pip install build
pipenv install --dev
pipenv install --dev --system
pip install setuptools==70.3.0
- name: Test
run: |
pipenv run pytest
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Current sdk version conforms to the [Serverless Workflow specification v0.8](htt
- pipenv required `pip install pipenv`

```
pipenv install --dev
pipenv install --dev

pipenv run pip install 'setuptools==70.3.0'

pipenv shell

Expand Down