Skip to content

Commit 83f8415

Browse files
committed
green ci
1 parent 4b89627 commit 83f8415

File tree

9 files changed

+171
-40
lines changed

9 files changed

+171
-40
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
run: make install
2626

2727
- name: Go Vet
28-
run: go vet ./...
28+
run: |
29+
go mod download
30+
go vet ./...
2931
3032
- name: Go Test
3133
run: make test

.github/workflows/win.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ jobs:
2323
- name: Build Dingdongbot
2424
run: |
2525
make install
26+
go mod download
2627
go vet ./...
2728
make test

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*.dll
55
*.so
66
*.dylib
7+
.idea/
78

89
# Test binary, built with `go test -c`
910
*.test
@@ -14,5 +15,4 @@
1415
# Dependency directories (remove the comment below to include it)
1516
# vendor/
1617

17-
go.sum
18-
ding-dong-bot
18+
ding-dong-bot

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/go-wechaty-getting-started.iml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

go.sum

Lines changed: 165 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)