Go version update and fix tests. (#44)

This commit is contained in:
Naoki Kosaka
2021-06-17 00:39:35 +09:00
committed by GitHub
parent 638a1e7319
commit 7894e78c3f
12 changed files with 932 additions and 142 deletions

15
.gitignore vendored
View File

@ -1,5 +1,6 @@
# Created by https://www.gitignore.io/api/go,visualstudiocode
# Created by https://www.toptal.com/developers/gitignore/api/go,visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=go,visualstudiocode
### Go ###
# Binaries for programs and plugins
@ -9,12 +10,15 @@
*.so
*.dylib
# Test binary, build with `go test -c`
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
### Go Patch ###
/vendor/
/Godeps/
@ -25,6 +29,11 @@
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide
# End of https://www.gitignore.io/api/go,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/go,visualstudiocode