summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-20 12:27:51 +0200
committerYuval Adam <_@yuv.al>2024-05-20 12:27:51 +0200
commitee6bb751e8189bd6c18ca73cc5e76c20c9fcb1fb (patch)
tree57e6d08fd93529043a8ef43a0302259c5447b5a8 /.github/workflows/build.yml
parent4618fc4de1886cc81945db9cff8ef5394e5958e2 (diff)
Check for lints with ruff
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cb480e1..43024af 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -18,5 +18,7 @@ jobs:
uses: abatilo/actions-poetry@v2
- name: Poetry install
run: poetry install
- - name: Run build
+ - name: Run unit tests
run: poetry run pytest
+ - name: Check for lints
+ run: poetry run ruff check