-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Valery Piashchynski <[email protected]>
- Loading branch information
Showing
13 changed files
with
245 additions
and
79 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
set -e -o pipefail | ||
|
||
# https://github.com/koalaman/shellcheck/wiki/SC2039#redirect-both-stdout-and-stderr | ||
if ! command -v golangci-lint 2>&1 /dev/null; then | ||
echo "golangci-lint is not installed" | ||
exit 1 | ||
fi | ||
|
||
exec golangci-lint --build-tags=race run "$@" |
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 |
---|---|---|
|
@@ -18,6 +18,6 @@ jobs: | |
- name: Run linter | ||
uses: golangci/[email protected] # Action page: <https://github.com/golangci/golangci-lint-action> | ||
with: | ||
version: v1.57 # without patch version | ||
version: v1.59 # without patch version | ||
only-new-issues: false # show only new issues if it's a pull request | ||
args: --timeout=10m --build-tags=race ./... |
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,7 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
cp ./.githooks/pre-commit .git/hooks/pre-commit | ||
|
||
echo "DONE" |
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,25 +1,26 @@ | ||
module github.com/roadrunner-server/memcached/v4 | ||
module github.com/roadrunner-server/memcached/v5 | ||
|
||
go 1.22.4 | ||
go 1.22.5 | ||
|
||
require ( | ||
github.com/bradfitz/gomemcache v0.0.0-20230905024940-24af94b03874 | ||
github.com/roadrunner-server/api/v4 v4.12.0 | ||
github.com/roadrunner-server/api/v4 v4.15.0 | ||
github.com/roadrunner-server/endure/v2 v2.4.5 | ||
github.com/roadrunner-server/errors v1.4.0 | ||
go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache v0.43.0 | ||
go.opentelemetry.io/otel/sdk v1.27.0 | ||
go.opentelemetry.io/otel/sdk v1.28.0 | ||
go.uber.org/zap v1.27.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
go.opentelemetry.io/otel v1.27.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.27.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.27.0 // indirect | ||
go.opentelemetry.io/otel v1.28.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.28.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.28.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
) |
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,4 +1,4 @@ | ||
go 1.22.4 | ||
go 1.22.5 | ||
|
||
use ( | ||
. | ||
|
Oops, something went wrong.