From b95489afe52d3822eb2b9b1ce2bd3a99fd36eb04 Mon Sep 17 00:00:00 2001 From: Vitor Sousa <32624576+vss-2@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:21:28 -0300 Subject: [PATCH] adds pull request trigger to python package testing pipeline Adds pull request trigger to GitHub Actions testing pipeline to verify the same branches (main, master and dev) as push triggers. It should be implemented following issue #322 . --- .github/workflows/Python-CMD-check.yaml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Python-CMD-check.yaml b/.github/workflows/Python-CMD-check.yaml index d40b8d20..b45a3fcd 100644 --- a/.github/workflows/Python-CMD-check.yaml +++ b/.github/workflows/Python-CMD-check.yaml @@ -1,4 +1,18 @@ -on: [push] +on: + push: + paths: + - python-package/** + branches: + - main + - master + - dev + pull_request: + paths: + - python-package/** + branches: + - main + - master + - dev name: Python-CMD-check