We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a2e2d commit 2582f4aCopy full SHA for 2582f4a
.github/workflows/go-presubmit.yml
@@ -0,0 +1,28 @@
1
+name: Go presubmit
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ types: [opened, reopened, synchronize]
9
+ workflow_dispatch:
10
11
+permissions:
12
+ contents: read
13
14
+jobs:
15
+ build:
16
+ name: Go presubmit
17
+ runs-on: ${{ matrix.os }}
18
+ strategy:
19
+ matrix:
20
+ go-version: ['stable']
21
+ os: ['ubuntu-latest']
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ - name: Install Go ${{ matrix.go-version }}
25
+ uses: actions/setup-go@v5
26
+ with:
27
+ go-version: ${{ matrix.go-version }}
28
+ - uses: creachadair/go-presubmit-action@v2
0 commit comments