Skip to content

Commit 14ed0ce

Browse files
committed
chore: revert go mod check
1 parent 3d8d086 commit 14ed0ce

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/lint.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,26 @@ jobs:
1919
with:
2020
go-version-file: "go.mod"
2121

22+
- name: Verify dependencies
23+
run: |
24+
go mod verify
25+
go mod download
26+
27+
- name: Run checks
28+
run: |
29+
STATUS=0
30+
assert-nothing-changed() {
31+
local diff
32+
"$@" >/dev/null || return 1
33+
if ! diff="$(git diff -U1 --color --exit-code)"; then
34+
printf '\e[31mError: running `\e[1m%s\e[22m` results in modifications that you must check into version control:\e[0m\n%s\n\n' "$*" "$diff" >&2
35+
git checkout -- .
36+
STATUS=1
37+
fi
38+
}
39+
assert-nothing-changed go mod tidy
40+
exit $STATUS
41+
2242
- name: golangci-lint
2343
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9
2444
with:

0 commit comments

Comments
 (0)