Skip to content

Commit 1c79141

Browse files
Merge pull request #10 from RohitRavindra-dev/feat/v1/cicd
build: setup build ci/cd action
2 parents 7cc6df4 + 01f4671 commit 1c79141

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build Check
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
permissions:
11+
contents: read
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
persist-credentials: false
20+
21+
- name: Setup Go
22+
uses: actions/setup-go@v5
23+
with:
24+
go-version-file: go.mod
25+
26+
- name: Build DevLocal
27+
run: go build .

0 commit comments

Comments
 (0)