aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-04-02 20:48:10 -0500
committerChristian Cleberg <hello@cleberg.net>2025-04-02 20:48:10 -0500
commit0f1c3422e1d311f02e6ebda8a31c894286cd71cd (patch)
tree5d4e5be7eb6896338bda03deb04895247230eb45 /.github/workflows
parent3e35f2087c69dce70e4b78b5bb76081bb1b536d3 (diff)
downloadcleberg.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/workflows')
-rw-r--r--.github/workflows/pylint.yml5
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: