Skip to content

Commit 7f95cbb

Browse files
committed
ci: Replace Triax Poetry install action with manual commands.
1 parent 359d699 commit 7f95cbb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/checks.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ jobs:
3030
restore-keys: |
3131
${{ runner.os }}-${{ matrix.python }}-dependencies-
3232
- name: Install dependencies
33-
uses: triaxtec/github-actions/python/install-and-configure-poetry@main
33+
run: |
34+
pip install --upgrade pip
35+
pip install poetry
36+
poetry config virtualenvs.in-project true
37+
poetry run pip install --upgrade pip
38+
poetry install
3439
- name: Run Checks
3540
uses: triaxtec/github-actions/python/run-checks@main
3641
with:

0 commit comments

Comments
 (0)