Skip to content

Commit 1490620

Browse files
committed
fix gh actions
1 parent 5a937fd commit 1490620

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/code-checks.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v4
17-
- name: Install poetry
18-
run: pipx install poetry
1917
- uses: actions/setup-python@v5
2018
with:
2119
python-version: '3.11.10'
2220
cache: 'poetry'
21+
- name: Install poetry
22+
run: pip install poetry
2323
- name: Install dependencies
24-
run: poetry install
24+
run: python -m poetry install
2525
- name: Ruff check
2626
run: poetry run ruff check .
2727
- name: Ruff format check
@@ -33,14 +33,14 @@ jobs:
3333
timeout-minutes: 60
3434
steps:
3535
- uses: actions/checkout@v4
36-
- name: Install poetry
37-
run: pipx install poetry
3836
- uses: actions/setup-python@v5
3937
with:
4038
python-version: '3.11.10'
4139
cache: 'poetry'
40+
- name: Install poetry
41+
run: pip install poetry
4242
- name: Install dependencies
43-
run: poetry install
43+
run: python -m poetry install
4444
- name: configure AWS
4545
uses: aws-actions/configure-aws-credentials@v4
4646
with:

0 commit comments

Comments
 (0)