This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Consolidate go.mod into one file (#30)
* chore: Consolidate go.mod into one file Signed-off-by: Josh Kim <[email protected]> * chore: remove plank github action jobs Signed-off-by: Josh Kim <[email protected]>
- Loading branch information
Showing
8 changed files
with
769 additions
and
892 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,8 +2,6 @@ name: Transport Post-merge pipeline | |
|
||
on: | ||
push: | ||
paths-ignore: | ||
- plank/**/* | ||
branches: | ||
- main | ||
|
||
|
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 |
---|---|---|
|
@@ -2,8 +2,6 @@ name: Transport Pre-merge pipeline | |
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- plank/**/* | ||
|
||
jobs: | ||
test: | ||
|
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,14 +1,31 @@ | ||
module github.com/vmware/transport-go | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/fatih/color v1.7.0 | ||
github.com/go-stomp/stomp v2.0.3+incompatible | ||
github.com/google/uuid v1.1.1 | ||
github.com/eliukblau/pixterm v1.3.1 | ||
github.com/fatih/color v1.12.0 | ||
github.com/go-git/go-git/v5 v5.4.2 | ||
github.com/go-stomp/stomp v2.1.4+incompatible | ||
github.com/google/uuid v1.3.0 | ||
github.com/gorilla/handlers v1.4.2 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/gorilla/websocket v1.4.1 | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/magefile/mage v1.11.0 // indirect | ||
github.com/mattn/go-isatty v0.0.13 // indirect | ||
github.com/prometheus/client_golang v1.6.0 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/sirupsen/logrus v1.8.0 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.8.1 | ||
github.com/streadway/amqp v1.0.0 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/urfave/cli v1.22.1 | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d | ||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect | ||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.