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 659379e commit fc0f02eCopy full SHA for fc0f02e
.github/workflows/test.yml
@@ -0,0 +1,36 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: [ "**" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ name: Build and Test
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout code
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup Go
19
+ uses: actions/setup-go@v5
20
+ with:
21
+ go-version: '1.24'
22
23
+ - name: Display Go version
24
+ run: go version
25
26
+ - name: Run make fmt
27
+ run: make fmt
28
29
+ - name: Run make mocks
30
+ run: make mocks
31
32
+ - name: Run make build
33
+ run: make build
34
35
+ - name: Run make test
36
+ run: make test
0 commit comments