From 117b457e63c6bb6bfb464386378fd7b398c6338d Mon Sep 17 00:00:00 2001 From: mhostetter Date: Wed, 25 Oct 2023 10:41:52 -0400 Subject: [PATCH] Lint unit tests in CI --- .github/workflows/lint.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index ddf984c56..e4a834bb7 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -34,11 +34,8 @@ jobs: - name: Install the `sdr` package run: python3 -m pip install . - - name: Lint code with ruff - run: python3 -m ruff check --output-format=github src/sdr/ - - # - name: Lint tests with ruff - # run: python3 -m ruff tests/ + - name: Lint with ruff + run: python3 -m ruff check --output-format=github . run-formatter: name: Ruff Format