From a7d3eb52137dae460790988ad218f09c038d8ccc Mon Sep 17 00:00:00 2001 From: Matt Cook Date: Fri, 10 May 2024 10:24:58 -0600 Subject: [PATCH 1/2] replace TravisCI with GitHub Actions in contributing.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c06aa317..b771cebf 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. From 89883cf1ef776f5e6bccf53a779bed529360df70 Mon Sep 17 00:00:00 2001 From: Matt Cook Date: Fri, 10 May 2024 10:26:03 -0600 Subject: [PATCH 2/2] replace deprectated skip-dirs with exclude-dirs in lint-project.sh --- go/lint-project.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/go/lint-project.sh b/go/lint-project.sh index f145d576..ca793e61 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