From a711db249cd7cbe7867021a0b7f366ee48d4b1ed Mon Sep 17 00:00:00 2001 From: Cory Todd Date: Fri, 16 Jun 2023 10:17:00 -0700 Subject: [PATCH] ci: run pylint on pull requests Add pull_request as a trigger so linting issues are caught before landing on main. Signed-off-by: Cory Todd --- .github/workflows/pylint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index faa4a73..a52d502 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,6 +1,8 @@ name: Pylint -on: [push] +on: + push: + pull_request: jobs: build: -- 2.31.1