From 819ac9c13d6239abb3560e199c9b473d383a2977 Mon Sep 17 00:00:00 2001 From: Guen Prawiroatmodjo Date: Tue, 30 Jul 2024 14:35:37 -0700 Subject: [PATCH] Use ruff check --- .github/workflows/python.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index d2a616b..b0ea337 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -20,7 +20,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements-dev.txt - name: Lint with ruff - run: ruff . + run: ruff check . - name: Check formatting with black run: black . --check --verbose - name: Run unit tests