From d71fe5daef7cf4fdd112c49b67a9f08e2b72f915 Mon Sep 17 00:00:00 2001 From: BioBootloader Date: Wed, 26 Apr 2023 17:11:16 -0700 Subject: [PATCH] exclude ruff check on examples that are supposed to have bugs --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6581df..a8c997d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Lint with ruff run: | # stop the build if there are Python syntax errors or undefined names - ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 . + ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 --exclude examples/ . # default set of ruff rules with GitHub Annotations ruff --format=github --target-version=py37 . - name: Test with pytest