File tree Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Expand file tree Collapse file tree 4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 19
19
- os : " ubuntu-latest"
20
20
go-ver : " 1.23"
21
21
cover : true
22
+ - go-ver : " 1.23"
23
+ submodules : true
22
24
23
25
runs-on : ${{ matrix.os }}
24
26
steps :
43
45
- name : Test Race
44
46
run : go test -race -v ./...
45
47
48
+ - name : Test Submodules
49
+ run : find . -name go.mod | while read f; do go -C $(dirname $f) test ./...; done
50
+ if : ${{ matrix.submodules }}
51
+
52
+ - name : Test Race Submodules
53
+ run : find . -name go.mod | while read f; do go -C $(dirname $f) test -race ./...; done
54
+ if : ${{ matrix.submodules }}
55
+
46
56
- name : Upload coverage reports to Codecov
47
57
uses : codecov/codecov-action@v3
48
58
if : ${{ matrix.cover }}
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ module tlog.app/go/tlog/cmd/tlog
2
2
3
3
go 1.22.0
4
4
5
+ toolchain go1.23.0
6
+
5
7
replace (
6
8
tlog.app/go/tlog => ../../
7
9
tlog.app/go/tlog/ext/tlclick => ../../ext/tlclick/
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ module tlog.app/go/tlog/ext/tlclick
2
2
3
3
go 1.22.0
4
4
5
+ toolchain go1.23.0
6
+
5
7
replace tlog.app/go/tlog => ../../
6
8
7
9
require (
Original file line number Diff line number Diff line change 1
1
module tlog.app/go/tlog/ext/tlgin
2
2
3
- go 1.22.0
3
+ go 1.22
4
4
5
5
replace tlog.app/go/tlog => ../../
6
6
You can’t perform that action at this time.
0 commit comments