From 748f66d8f70f0458d795a08cf51ab5f752269da4 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Mon, 10 Feb 2025 09:18:01 -0800 Subject: [PATCH] Run Python checks for any change including deletion The condition for running the Python checks needs to include deletion of Python files, not just addition or modification, because deletion can cause failures. --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50053561..c6bccc68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,8 +121,7 @@ jobs: # The outputs will be variables named "foo_files" for a filter "foo". filters: | python: - - added|modified: - - '**/*.py' + - '**/*.py' yaml: - added|modified: - '**/*.yaml'