File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 13
13
name : go-test
14
14
strategy :
15
15
matrix :
16
- go-version : [1.21.x, 1.22.x]
17
- # XXX: is it actually useful to run unit tests on macOS?
18
- platform : [ubuntu-latest, macos-latest]
16
+ go-version : [1.22.x, 1.23.x]
17
+ platform : [ubuntu-latest]
19
18
runs-on : ${{ matrix.platform }}
20
19
steps :
21
20
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -22,12 +22,11 @@ jobs:
22
22
- uses : actions/checkout@v4
23
23
- uses : actions/setup-go@v5
24
24
with :
25
- go-version : 1.21 .x
25
+ go-version : 1.22 .x
26
26
cache : false
27
27
- name : golangci-lint
28
28
uses : golangci/golangci-lint-action@v6
29
29
with :
30
- version : v1.54 # current version at time of commit
31
30
args : --timeout=10m
32
31
# Only show new issues in a PR but show all issues for pushes
33
32
only-new-issues : ${{ github.event_name == 'pull_request' && 'true' || 'false' }}
Original file line number Diff line number Diff line change 50
50
- uses : actions/checkout@v4
51
51
- uses : actions/setup-go@v5
52
52
with :
53
- go-version : 1.21 .x
53
+ go-version : 1.22 .x
54
54
- name : Build binary
55
55
run : GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build
56
56
- name : Upload release asset
Original file line number Diff line number Diff line change 1
1
module github.com/blinklabs-io/adder
2
2
3
- go 1.21
3
+ go 1.22
4
4
5
- toolchain go1.21.6
5
+ toolchain go1.22.8
6
6
7
7
require (
8
8
github.com/SundaeSwap-finance/kugo v1.0.5
You can’t perform that action at this time.
0 commit comments