aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-04-02 20:48:10 -0500
committerChristian Cleberg <[email protected]>2025-04-02 20:48:10 -0500
commitf47d13aed969c0f733659b8a8be7c6468f5e11ec (patch)
tree5d4e5be7eb6896338bda03deb04895247230eb45
parent1be7c0f9ba3a2e699b4413682ca8606446ac618c (diff)
downloadcleberg.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.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: