Skip to content

Commit 8f5926b

Browse files
committed
ci: Replace Triax Poetry install action with manual commands.
1 parent e68acd0 commit 8f5926b

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
@@ -31,7 +31,12 @@ jobs:
3131
restore-keys: |
3232
${{ runner.os }}-${{ matrix.python }}-dependencies-
3333
- name: Install dependencies
34-
uses: triaxtec/github-actions/python/install-and-configure-poetry@main
34+
run: |
35+
pip install --upgrade pip
36+
pip install poetry
37+
poetry config virtualenvs.in-project true
38+
poetry run pip install --upgrade pip
39+
poetry install
3540
- name: Run Checks
3641
uses: triaxtec/github-actions/python/run-checks@main
3742
with:

0 commit comments

Comments
 (0)