Skip to content

Commit

Permalink
Force remake reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejzj committed Dec 27, 2024
1 parent b88e38c commit 351bbde
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,29 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: "3.11"

- name: Check requirements lock
run: |
make requirements.txt
make -B requirements.txt
git diff --exit-code requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Format check
run: |
make format-check
- name: Lint check
run: |
make lint
- name: Type check
run: |
make type-check
- name: Test
run: |
make test

0 comments on commit 351bbde

Please sign in to comment.