From 7d6f43e2fcb4254d8e0323e581ff52288d7cc17c Mon Sep 17 00:00:00 2001 From: jossmoff Date: Sat, 13 Jan 2024 13:32:36 +0000 Subject: [PATCH] :construction_worker: Updating CI/CD to use Ruff --- .github/workflows/cicd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 5b0c38c..5c03fb9 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -22,8 +22,8 @@ jobs: - name: ๐Ÿ“ฆ Install dependencies run: pip install -r requirements-dev.txt # Replace with your requirements file - - name: โ„๏ธ Run Flake8 - run: flake8 . + - name: ๐Ÿ’ป Run Ruff checks + run: ruff check . - name: ๐Ÿงช Run unit tests run: pytest --cov