From 351bbde123dffb86c8432772aa3e296386b1c123 Mon Sep 17 00:00:00 2001 From: Maciej Ziaja Date: Fri, 27 Dec 2024 15:21:44 +0100 Subject: [PATCH] Force remake reqs --- .github/workflows/quality_checks.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quality_checks.yml b/.github/workflows/quality_checks.yml index c77d786..3233c82 100644 --- a/.github/workflows/quality_checks.yml +++ b/.github/workflows/quality_checks.yml @@ -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