We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7cc6df4 + 01f4671 commit 1c79141Copy full SHA for 1c79141
1 file changed
.github/workflows/build.yml
@@ -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
24
+ go-version-file: go.mod
25
26
+ - name: Build DevLocal
27
+ run: go build .
0 commit comments