From 79eb69c6990ba26e975fdf23cb34c23249bb9ed8 Mon Sep 17 00:00:00 2001 From: Andrei Paraschiv Date: Tue, 27 Feb 2024 00:48:20 +0200 Subject: [PATCH] Merge remote-tracking branch 'palfrey/pipeline-on-pr' --- .github/workflows/pipeline.yml | 1 + .github/workflows/pylint.yml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index f050dd0..03c8a91 100755 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -4,6 +4,7 @@ on: # events that trigger our pipeline: push on any branch and release creation push: release: types: [created] + pull_request: jobs: # jobs. We will have two jobs (test and publish) with multiple steps. test: diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 22cd3cd..d7661b8 100755 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,6 +1,8 @@ name: Pylint -on: [push] +on: + push: + pull_request: jobs: build: