diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-20 12:27:51 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-20 12:27:51 +0200 |
| commit | ee6bb751e8189bd6c18ca73cc5e76c20c9fcb1fb (patch) | |
| tree | 57e6d08fd93529043a8ef43a0302259c5447b5a8 /.github | |
| parent | 4618fc4de1886cc81945db9cff8ef5394e5958e2 (diff) | |
Check for lints with ruff
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 4 |
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 |
