From a9dcdd8a5fc34617b71504139cefbb2e53880be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Fri, 24 Nov 2023 21:04:51 +0000 Subject: [PATCH] Run ruff in CI --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2582e53..351ca54 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,9 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install dependencies - run: python -m pip install tox + run: python -m pip install tox ruff + - name: Run ruff + run: ruff check . - name: Run unit tests (via tox) # Run tox using the version of Python in `PATH` run: tox -e py