From 039be2232ace9ac1e11ba5ef10aa36e41c79b5a2 Mon Sep 17 00:00:00 2001 From: sutarrohit Date: Tue, 30 Jan 2024 21:08:01 +0530 Subject: [PATCH] add workflow --- .github/workflows/testBuild.yaml | 35 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.github/workflows/testBuild.yaml b/.github/workflows/testBuild.yaml index 9c63378..4cf8925 100644 --- a/.github/workflows/testBuild.yaml +++ b/.github/workflows/testBuild.yaml @@ -2,26 +2,25 @@ name: testBuild workflow on: push: - branch: -dev - pull: - branch: -dev - + branches: + - dev + pull_request: + branches: + - dev workflow_dispatch: - jobs: - runBuild: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: hello world +jobs: + runBuild: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: hello world run: echo "Hello World" shell: bash - goodBye: - run-on: ubuntu-latest - steps: - - name: goodbye world - run: echo "Bye world" - shell: bash - - + goodBye: + runs-on: ubuntu-latest + steps: + - name: goodbye world + run: echo "Bye world" + shell: bash