diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-04-02 20:48:10 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-04-02 20:48:10 -0500 |
commit | 0f1c3422e1d311f02e6ebda8a31c894286cd71cd (patch) | |
tree | 5d4e5be7eb6896338bda03deb04895247230eb45 /.github | |
parent | 3e35f2087c69dce70e4b78b5bb76081bb1b536d3 (diff) | |
download | cleberg.net-0f1c3422e1d311f02e6ebda8a31c894286cd71cd.tar.gz cleberg.net-0f1c3422e1d311f02e6ebda8a31c894286cd71cd.tar.bz2 cleberg.net-0f1c3422e1d311f02e6ebda8a31c894286cd71cd.zip |
update pylint action to only run when python files are modified
Diffstat (limited to '.github')
-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: |