File tree Expand file tree Collapse file tree 4 files changed +7
-49
lines changed Expand file tree Collapse file tree 4 files changed +7
-49
lines changed Original file line number Diff line number Diff line change 31
31
github_token : ${{ secrets.GITHUB_TOKEN }}
32
32
goos : ${{ matrix.goos }}
33
33
goarch : ${{ matrix.goarch }}
34
- goversion : " 1.17 "
34
+ goversion : " 1.20 "
35
35
project_path : ./
36
36
binary_name : target-jsonl-blob
37
37
compress_assets : false
Original file line number Diff line number Diff line change 7
7
test :
8
8
strategy :
9
9
matrix :
10
- go-version : [1.17 .x, 1.18.x, 1.19 .x]
10
+ go-version : [1.19 .x, 1.20 .x]
11
11
os : [ubuntu-latest, macos-latest, windows-latest]
12
12
runs-on : ${{ matrix.os }}
13
13
steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v3
14
16
- name : Install Go
15
17
uses : actions/setup-go@v3
16
18
with :
17
19
go-version : ${{ matrix.go-version }}
18
- - name : Checkout code
19
- uses : actions/checkout@v3
20
+ cache : true
21
+ cache-dependency-path : go.sum
20
22
- name : Test
21
23
run : go test ./... -cover
Original file line number Diff line number Diff line change 1
1
module meltano.com/target-jsonl-blob
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/spf13/cobra v1.6.1
You can’t perform that action at this time.
0 commit comments