Skip to content

Commit b4bdf11

Browse files
Fix GitHub Actions workflows by installing hatch-pip-compile plugin
Co-authored-by: sophiagavrila <57912010+sophiagavrila@users.noreply.github.com>
1 parent 17e3bc3 commit b4bdf11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pyright.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: '3.x'
2020
- name: Install dependencies
2121
run: |
22-
python -m pip install hatch
22+
python -m pip install hatch hatch-pip-compile
2323
hatch env create dev
2424
- run: echo "$(hatch env find dev)/bin" >> $GITHUB_PATH
2525
- name: Run pyright

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: '3.x'
2626
- name: Install dependencies
2727
run: |
28-
python -m pip install hatch
28+
python -m pip install hatch hatch-pip-compile
2929
hatch env create dev
3030
- name: Test with pytest
3131
run: |

.github/workflows/ruff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: '3.x'
2020
- name: Install dependencies
2121
run: |
22-
python -m pip install hatch
22+
python -m pip install hatch hatch-pip-compile
2323
hatch env create dev
2424
- name: Lint with Ruff (check)
2525
run: |

0 commit comments

Comments
 (0)