diff options
| author | Yuval Adam <_@yuv.al> | 2024-05-20 12:29:09 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-05-20 12:29:09 +0200 |
| commit | 8adcf99a246651e137cdd948b701eb1fd6ddf515 (patch) | |
| tree | 2476c788c7453a6a6130ea1e630bd49a590ed9c7 /.github | |
| parent | ee6bb751e8189bd6c18ca73cc5e76c20c9fcb1fb (diff) | |
Add formatting check in CIv0.6.0
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
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 |
