-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [#100] Prevent code duplication by using a Taskfile
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# TASK_X_REMOTE_TASKFILES=1 task remote:lint | ||
# cmd: steps that will be run sequentially | ||
# deps: tasks that will be run in parallel | ||
--- | ||
version: "3" | ||
|
||
vars: | ||
GCI_VERSION: 0.13.5 | ||
GOLANGCI_LINT_VERSION: 1.61.0 | ||
|
||
tasks: | ||
gci-install: | ||
silent: true | ||
cmds: | ||
- | | ||
if ! ~/go/bin/gci --version | grep -q "gci version {{.GCI_VERSION}}"; then | ||
go install github.com/daixiang0/gci@v{{.GCI_VERSION}} | ||
fi | ||
gci: | ||
silent: true | ||
cmds: | ||
- task: gci-install | ||
- | | ||
if ~/go/bin/gci list --skip-generated . | grep "\.go$"; then | ||
echo "One or more golang files detected with: 'incorrect import order':" | ||
echo " * Observe: '~/go/bin/gci diff --skip-generated .'" | ||
echo " * Resolve: '~/go/bin/gci write --skip-generated .'" | ||
exit 1 | ||
fi | ||
gci-write: | ||
silent: true | ||
cmds: | ||
- task: gci-install | ||
- ~/go/bin/gci write --skip-generated -s standard -s default . | ||
golangci-lint-install: | ||
silent: true | ||
cmds: | ||
- | | ||
if ! golangci-lint --version | grep -q "has version {{.GOLANGCI_LINT_VERSION}}"; then | ||
curl \ | ||
-sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh |\ | ||
sh -s -- -b $(go env GOPATH)/bin v{{.GOLANGCI_LINT_VERSION}} | ||
fi | ||
golangci-lint-run: | ||
silent: true | ||
cmds: | ||
- | | ||
golangci-lint run \ | ||
-v | ||
golangci-lint: | ||
silent: true | ||
cmds: | ||
- task: golangci-lint-install | ||
- task: golangci-lint-run | ||
golangci-lint-without-cache: | ||
silent: true | ||
cmds: | ||
- task: golangci-lint-install | ||
- golangci-lint cache clean | ||
- task: golangci-lint-run | ||
lint: | ||
silent: true | ||
deps: | ||
- task: gci | ||
- task: golangci-lint |