From 42447492cf85b1886110973afad2086484ca0110 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Tue, 2 Jul 2024 17:19:54 +0530 Subject: [PATCH] add ci_test file for github action --- .github/workflows/ci_pipe.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci_pipe.yml diff --git a/.github/workflows/ci_pipe.yml b/.github/workflows/ci_pipe.yml new file mode 100644 index 0000000..08fd27e --- /dev/null +++ b/.github/workflows/ci_pipe.yml @@ -0,0 +1,22 @@ +name: laxmi_ci_test + +on: + push: + branches: main + pull_request: + branches: main + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: setup go 1.x + uses: actions/setup-go@v2 + with: + go-version: ^1.15 + id: go + + - name: checkout code repo + uses: actions/checkout@v2