Skip to content

Commit

Permalink
adds pull request trigger to python package testing pipeline
Browse files Browse the repository at this point in the history
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 .
  • Loading branch information
vss-2 committed Sep 13, 2023
1 parent 78b8fb8 commit b95489a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/Python-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit b95489a

Please sign in to comment.