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 c4ae57a commit ad1508bCopy full SHA for ad1508b
.github/workflows/test.yaml
@@ -0,0 +1,38 @@
1
+---
2
+on:
3
+ push: {}
4
+ workflow_dispatch: {}
5
+
6
+name: Build & Test
7
8
+jobs:
9
10
+ build:
11
+ name: Build
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout Code
15
+ uses: actions/checkout@v5
16
17
+ - name: Install Go
18
+ uses: actions/setup-go@v6
19
+ with:
20
+ go-version-file: "go.mod"
21
22
+ - name: Run
23
+ run: go build .
24
25
+ test:
26
+ name: Test
27
28
29
30
31
32
33
34
35
36
37
+ - name: Run Tests
38
+ run: go test -v ./...
0 commit comments