Skip to content

Commit 06775f1

Browse files
authored
Merge pull request #201 from babiel/go-mod-tidy
style: go mod tidy
2 parents 7b730f8 + d5971f1 commit 06775f1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ jobs:
1414
- name: Set up Go
1515
uses: actions/setup-go@v3
1616
with:
17-
go-version: '1.22'
17+
go-version: '1.23'
1818

1919
- name: Checkout repo
2020
uses: actions/checkout@v3
2121

22+
- name: Check go mod tidy
23+
run: go mod tidy -diff
24+
2225
- name: Run go vet
2326
run: go vet .
2427

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/schollz/progressbar/v3
22

33
require (
4+
github.com/chengxilo/virtualterm v1.0.4
45
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213
56
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
67
github.com/rivo/uniseg v0.4.7
@@ -9,7 +10,6 @@ require (
910
)
1011

1112
require (
12-
github.com/chengxilo/virtualterm v1.0.4 // indirect
1313
github.com/davecgh/go-spew v1.1.1 // indirect
1414
github.com/mattn/go-isatty v0.0.20 // indirect
1515
github.com/mattn/go-runewidth v0.0.16 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/chengxilo/virtualterm v1.0.3 h1:Vycm/mKGeHuLXA4zK3XsaseOW7VMY6jJ88/9+XHSNcA=
2-
github.com/chengxilo/virtualterm v1.0.3/go.mod h1:wjAbIDvnp6Vc8hQoM7tt6fcdk0NiSaQBSoSRwMIpphs=
31
github.com/chengxilo/virtualterm v1.0.4 h1:Z6IpERbRVlfB8WkOmtbHiDbBANU7cimRIof7mk9/PwM=
42
github.com/chengxilo/virtualterm v1.0.4/go.mod h1:DyxxBZz/x1iqJjFxTFcr6/x+jSpqN0iwWCOK1q10rlY=
53
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

0 commit comments

Comments
 (0)