Skip to content

Commit 1c6c99c

Browse files
authored
Fix GH actions python version (#72)
1 parent c4a93da commit 1c6c99c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/code-checks.yaml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ 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'
22-
cache: 'poetry'
20+
- name: Install poetry
21+
run: pip install poetry
2322
- name: Install dependencies
24-
run: poetry install
23+
run: python -m poetry install
2524
- name: Ruff check
2625
run: poetry run ruff check .
2726
- name: Ruff format check
@@ -33,14 +32,13 @@ jobs:
3332
timeout-minutes: 60
3433
steps:
3534
- uses: actions/checkout@v4
36-
- name: Install poetry
37-
run: pipx install poetry
3835
- uses: actions/setup-python@v5
3936
with:
4037
python-version: '3.11.10'
41-
cache: 'poetry'
38+
- name: Install poetry
39+
run: pip install poetry
4240
- name: Install dependencies
43-
run: poetry install
41+
run: python -m poetry install
4442
- name: configure AWS
4543
uses: aws-actions/configure-aws-credentials@v4
4644
with:

0 commit comments

Comments
 (0)