Skip to content

Commit 060efca

Browse files
committed
Explicitly install poetry-specified dependencies.
1 parent 253ee53 commit 060efca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/lint.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
cache: "pip"
25-
- name: Install dependencies
25+
- name: Install dev dependencies
2626
run: |
2727
python -m pip install --upgrade pip poetry
2828
poetry install
29-
29+
- name: Install Python dependencies
30+
run: python -m poetry install
3031
- name: Run Ruff
3132
run: python -m ruff check --output-format=github

0 commit comments

Comments
 (0)