diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c06aa31..b771ceb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,4 +36,4 @@ A good quality PR will have the following characteristics: A good PR should be able to flow through a peer review system easily and quickly. -Our Build pipeline utilizes [Travis-CI](https://travis-ci.org/moov-io/ach) to enforce many tools that you should add to your editor before issuing a pull request. +Our Build pipeline utilizes [GitHub Actions](https://github.com/moov-io/infra/actions) to enforce many tools that you should add to your editor before issuing a pull request. diff --git a/go/lint-project.sh b/go/lint-project.sh index f145d57..ca793e6 100755 --- a/go/lint-project.sh +++ b/go/lint-project.sh @@ -293,7 +293,8 @@ run: timeout: 5m tests: false go: "$GO_VERSION" - skip-dirs: +issues: + exclude-dirs: - "cmd/*" - "admin" - "client" @@ -349,7 +350,7 @@ EOF disabled="-D=$DISABLED_GOLANGCI_LINTERS" fi - ./bin/golangci-lint $GOLANGCI_FLAGS run "$enabled" "$disabled" --verbose --go="$GO_VERSION" --skip-dirs="(admin|client)" --timeout=5m $GOLANGCI_TAGS + ./bin/golangci-lint $GOLANGCI_FLAGS run "$enabled" "$disabled" --verbose --go="$GO_VERSION" --exclude-dirs="(admin|client)" --timeout=5m $GOLANGCI_TAGS echo "FINISHED golangci-lint checks" # Cleanup