Skip to content

Upgrade version to 1.10.1 #99

Upgrade version to 1.10.1

Upgrade version to 1.10.1 #99

Workflow file for this run

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