Upgrade version to 1.13.0 #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Pipeline for opened PR | |
on: | |
pull_request: | |
branches: [ master, develop ] #put your branches which you want to execute test pipeline | |
types: [ opened, ready_for_review ] | |
concurrency: | |
group: ${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
run_test_on_develop_branch: | |
if: ${{ github.base_ref == 'develop' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run test | |
uses: ./ | |
id: test-pipeline | |
with: | |
environment: 'dev' | |
run_test_on_master_branch: | |
if: ${{ github.base_ref == 'master' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run test | |
uses: ./ | |
id: test-pipeline |