We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7a8909 commit c649cbcCopy full SHA for c649cbc
1 file changed
.github/workflows/main.yml
@@ -6,7 +6,7 @@ on:
6
- main
7
push:
8
branches:
9
- - main
+ - "**"
10
11
jobs:
12
test:
@@ -20,7 +20,7 @@ jobs:
20
- name: Set up Go
21
uses: actions/setup-go@v5
22
with:
23
- go-version: '1.24.1'
+ go-version: "1.21"
24
cache: true
25
26
- name: Download dependencies
@@ -32,6 +32,9 @@ jobs:
32
- name: Run go vet
33
run: go vet ./...
34
35
+ - name: Build application
36
+ run: go build -v ./...
37
+
38
- name: Run tests
39
run: go test -v -race -coverprofile=coverage.out ./...
40
0 commit comments