Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 4aab496

Browse files
author
Phil Varner
committed
install dependencies before running mypy
1 parent ad9359d commit 4aab496

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/pr.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ jobs:
88
lint:
99
runs-on: ubuntu-latest
1010
steps:
11+
- uses: actions/checkout@v4
12+
- run: pipx install poetry==1.7.1 pre-commit
1113
- uses: actions/setup-python@v5
1214
with:
1315
python-version: "3.12"
14-
- uses: actions/checkout@v4
15-
- run: pipx install pre-commit
16+
cache: poetry
17+
- name: Install dependencies
18+
run: poetry install --with=dev
1619
- name: Run commit checks
1720
uses: ./.github/actions/pre-commit
1821

0 commit comments

Comments
 (0)