-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update for
main
and Go 1.18 (#150)
* Run CI jobs on main branch instead of master Signed-off-by: Thane Thomson <connect@thanethomson.com> * Bump Go version to 1.18 Signed-off-by: Thane Thomson <connect@thanethomson.com> * Fix lints Signed-off-by: Thane Thomson <connect@thanethomson.com> Signed-off-by: Thane Thomson <connect@thanethomson.com>
- Loading branch information
1 parent
0b5598b
commit 800d27b
Showing
8 changed files
with
62 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
jobs: | ||
golangci: | ||
name: golangci-lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,68 @@ | ||
module github.com/informalsystems/tm-load-test | ||
|
||
go 1.15 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/tendermint/tendermint v0.34.14 | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.4.1 // indirect | ||
github.com/Workiva/go-datastructures v1.0.52 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/btcsuite/btcd v0.22.0-beta // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/containerd/continuity v0.1.0 // indirect | ||
github.com/dgraph-io/badger/v2 v2.2007.2 // indirect | ||
github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de // indirect | ||
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-kit/kit v0.12.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/go-kit/log v0.2.0 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/google/orderedcode v0.0.1 // indirect | ||
github.com/gtank/merlin v0.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/jmhodges/levigo v1.0.0 // indirect | ||
github.com/lib/pq v1.10.6 // indirect | ||
github.com/libp2p/go-buffer-pool v0.0.2 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect | ||
github.com/minio/highwayhash v1.0.2 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/onsi/gomega v1.20.0 // indirect | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/rs/cors v1.7.0 // indirect | ||
github.com/sasha-s/go-deadlock v0.3.1 // indirect | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.8.0 // indirect | ||
github.com/tendermint/tendermint v0.34.14 | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa | ||
github.com/syndtr/goleveldb v1.0.1-0.20200815110645-5c35d600f0ca // indirect | ||
github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect | ||
github.com/tendermint/tm-db v0.6.4 // indirect | ||
go.etcd.io/bbolt v1.3.5 // indirect | ||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect | ||
golang.org/x/sys v0.0.0-20220906165534-d0df966e6959 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect | ||
google.golang.org/grpc v1.46.2 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect | ||
) |
Oops, something went wrong.