Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #16 from BeckerMax/fix/remove-unkown-ips
Browse files Browse the repository at this point in the history
Fix/remove unkown ips
  • Loading branch information
vpnachev authored Nov 12, 2020
2 parents ecace9c + 47149b0 commit a66fff3
Show file tree
Hide file tree
Showing 2,206 changed files with 561,634 additions and 274,022 deletions.
9 changes: 6 additions & 3 deletions .ci/check
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ if [[ "${SOURCE_PATH}" != *"src/github.com/gardener/aws-lb-readvertiser" ]]; the
export PATH="${GOBIN}:${PATH}"
fi

# Install Golint (linting tool).
go get -u github.com/golang/lint/golint

###############################################################################

PACKAGES="$(go list -e ./... | grep -vE '/tmp/|/vendor/')"
Expand All @@ -45,6 +42,12 @@ go vet ${PACKAGES}
# Execute automatic code formatting directive.
go fmt ${PACKAGES}

# Run tests
go test ./...

# Install Golint (linting tool).
go get -u golang.org/x/lint/golint

# Execute lint checks.
for package in ${LINT_FOLDERS}; do
golint -set_exit_status $(find $package -maxdepth 1 -name "*.go" | grep -vE 'zz_generated|_test.go')
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

FROM alpine:3.8
FROM alpine:3.12.1

RUN apk add --update bash curl

Expand Down
Loading

0 comments on commit a66fff3

Please sign in to comment.