File tree Expand file tree Collapse file tree 4 files changed +11
-18
lines changed Expand file tree Collapse file tree 4 files changed +11
-18
lines changed Original file line number Diff line number Diff line change 7
7
branches : [ '*' ]
8
8
workflow_dispatch :
9
9
10
- env :
11
- GO_VERSION : 1.22.x
12
-
13
10
jobs :
14
11
15
12
lint :
22
19
- uses : actions/setup-go@v5
23
20
name : Set up Go
24
21
with :
25
- go-version : ${{ env.GO_VERSION }}
22
+ go-version-file : go.mod
26
23
cache : false
27
24
- uses : golangci/golangci-lint-action@v6
28
25
name : Install golangci-lint
43
40
- name : Set up Go
44
41
uses : actions/setup-go@v5
45
42
with :
46
- go-version : ${{ env.GO_VERSION }}
43
+ go-version-file : go.mod
47
44
cache : true
48
45
- name : Build tmux-fastcopy
49
46
run : make build
67
64
- name : Set up Go
68
65
uses : actions/setup-go@v5
69
66
with :
70
- go-version : ${{ env.GO_VERSION }}
67
+ go-version-file : go.mod
71
68
cache : true
72
69
73
70
- name : Checkout Tmux
Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - name : Setup Go
16
- uses : actions/setup-go@v5
17
- with :
18
- go-version : 1.22.x
19
- cache : true
20
-
21
15
- name : Checkout
22
16
uses : actions/checkout@v4
23
17
with :
24
18
fetch-depth : 0
25
19
20
+ - name : Setup Go
21
+ uses : actions/setup-go@v5
22
+ with :
23
+ go-version-file : go.mod
24
+ cache : true
25
+
26
26
- name : Install parse-changelog
27
27
uses : taiki-e/install-action@v2
28
28
with :
Original file line number Diff line number Diff line change 1
1
module github.com/abhinav/tmux-fastcopy
2
2
3
- go 1.23.4
4
-
5
- toolchain go1.23.5
3
+ go 1.23.5
6
4
7
5
require (
8
6
github.com/benbjohnson/clock v1.3.5
Original file line number Diff line number Diff line change 1
1
module github.com/abhinav/tmux-fastcopy/integration
2
2
3
- go 1.23.4
4
-
5
- toolchain go1.23.5
3
+ go 1.23.5
6
4
7
5
require (
8
6
github.com/abhinav/tmux-fastcopy v0.14.1
You can’t perform that action at this time.
0 commit comments