diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 0bdd3b1..4a39147 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -36,4 +36,11 @@ jobs: - run: poetry install --no-interaction - - run: poetry run pytest + - name: Check formatting + uses: astral-sh/ruff-action@v1 + + - name: Lint code + uses: astral-sh/ruff-action@v1 + + - name: Test + run: poetry run pytest