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 7a9f798 commit 0272088Copy full SHA for 0272088
.github/dependabot.yml
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: "build"
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - "master"
7
+ - "stable"
8
+ push:
9
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: "ubuntu-22.04"
16
+ steps:
17
+ - name: "checkout repository"
18
+ uses: "actions/checkout@v3"
19
+ - name: "setup go"
20
+ uses: "actions/setup-go@v3"
21
+ with:
22
+ go-version: "1.23"
23
+ - name: "make test"
24
+ run: "make test"
0 commit comments