diff options
| author | Christian Cleberg <[email protected]> | 2025-04-02 20:48:10 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-04-02 20:48:10 -0500 |
| commit | f47d13aed969c0f733659b8a8be7c6468f5e11ec (patch) | |
| tree | 5d4e5be7eb6896338bda03deb04895247230eb45 | |
| parent | 1be7c0f9ba3a2e699b4413682ca8606446ac618c (diff) | |
| download | cleberg.net-f47d13aed969c0f733659b8a8be7c6468f5e11ec.tar.gz cleberg.net-f47d13aed969c0f733659b8a8be7c6468f5e11ec.tar.bz2 cleberg.net-f47d13aed969c0f733659b8a8be7c6468f5e11ec.zip | |
update pylint action to only run when python files are modified
| -rw-r--r-- | .github/workflows/pylint.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 32d3790..1c22aa5 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,6 +1,9 @@ name: Pylint -on: [push] +on: + push: + paths: + - '**.py' jobs: build: |
