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 a087ce4 commit a887e28Copy full SHA for a887e28
.github/workflows/go.yml
@@ -0,0 +1,22 @@
1
+ame: Go
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
+jobs:
11
+ build_and_test:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ - name: Setup Go
17
+ uses: actions/setup-go@v5
18
+ with:
19
+ go-version: 'stable'
20
+ check-latest: true
21
+ - name: Test
22
+ run: make test
0 commit comments