Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/verify-buildability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
runs-on: ubuntu-latest
env:
PIP_USE_PEP517: '1'
REQUIREMENTS_FILE: 'requirements.dev.txt'
steps:
- name: Checkout sources
id: checkout-sources
Expand All @@ -26,8 +27,14 @@ jobs:
cache: pip
cache-dependency-path: pyproject.toml

- name: install dev dependencies
run: pip3 install ".[dev]"
- name: install pip-tools
run: pip3 install pip-tools

- name: create dev requirements
run: pip-compile --upgrade --extra=dev -o $REQUIREMENTS_FILE

- name: install dev requirements
run: pip3 install -r $REQUIREMENTS_FILE

- name: run pre-commit-check
run: >
Expand Down