We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5d8068 commit 346a72dCopy full SHA for 346a72d
.github/workflows/go.yml
@@ -2,9 +2,9 @@ name: Go
2
3
on:
4
push:
5
- branches: [ master ]
+ branches: [ main ]
6
pull_request:
7
8
9
jobs:
10
@@ -16,18 +16,11 @@ jobs:
16
- name: Set up Go 1.x
17
uses: actions/setup-go@v2
18
with:
19
- go-version: ^1.14
+ go-version: ^1.22
20
id: go
21
22
- name: Check out code into the Go module directory
23
- uses: actions/checkout@v2
24
-
25
- - name: Get dependencies
26
- run: |
27
- go get -v -t -d ./...
28
29
- - name: Build
30
- run: go build -v .
+ uses: actions/checkout@v4
31
32
- name: Test
33
run: go test -v .
go.mod
@@ -0,0 +1,3 @@
1
+module github.com/bigkevmcd/go-cachewrapper
+
+go 1.22.2
0 commit comments