mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
9 lines
254 B
Bash
Executable file
9 lines
254 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# Install deps
|
|
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.30.0
|
|
export PATH=$PATH:$(go env GOPATH)/bin
|
|
|
|
# Run verify steps
|
|
make gofmt-verify -e
|
|
make ci-lint -e
|