-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
31 additions
and
39 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: reviewdog | ||
on: [pull_request] | ||
jobs: | ||
golangci-lint: | ||
name: runner / golangci-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3 | ||
|
||
- name: golangci-lint | ||
uses: reviewdog/action-golangci-lint@v2 | ||
with: | ||
go_version: "1.16" | ||
|
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,15 +1,15 @@ | ||
module github.com/rsocket/rsocket-go | ||
|
||
go 1.11 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/golang/mock v1.4.4 | ||
github.com/google/uuid v1.1.2 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/jjeffcaii/reactor-go v0.5.1 | ||
github.com/jjeffcaii/reactor-go v0.5.3 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/pkg/profile v1.5.0 | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/stretchr/testify v1.7.1 | ||
github.com/urfave/cli/v2 v2.3.0 | ||
go.uber.org/atomic v1.7.0 | ||
) |
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