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