summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 43024af..9e957bb 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,7 +18,9 @@ jobs:
uses: abatilo/actions-poetry@v2
- name: Poetry install
run: poetry install
- - name: Run unit tests
- run: poetry run pytest
+ - name: Check formatting
+ run: poetry run ruff format --check
- name: Check for lints
run: poetry run ruff check
+ - name: Run unit tests
+ run: poetry run pytest