-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlint.sh
More file actions
executable file
·21 lines (17 loc) · 755 Bytes
/
Copy pathlint.sh
File metadata and controls
executable file
·21 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
set -e -u -o pipefail # Fail on error
dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
cd "$dir"
export PATH=$PATH:$(go env GOPATH)/bin
(cd auth/fido2 && golangci-lint run --timeout 10m)
(cd auth/mock && golangci-lint run --timeout 10m)
(cd auth/rpc && golangci-lint run --timeout 10m)
(cd firestore && golangci-lint run --timeout 10m)
(cd http/api && golangci-lint run --timeout 10m)
(cd http/client && golangci-lint run --timeout 10m)
(cd http/server && golangci-lint run --timeout 10m)
(cd sdb && golangci-lint run --timeout 10m)
(cd service && golangci-lint run --timeout 10m)
(cd sqlcipher && golangci-lint run --timeout 10m)
(cd vault && golangci-lint run --timeout 10m)
(cd wormhole && golangci-lint run --timeout 10m)