mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
ci: fail if any Go files contain an ignore directive (#4055)
This commit is contained in:
parent
c1ce4a8e92
commit
5b25d8b5be
1 changed files with 7 additions and 0 deletions
7
.github/workflows/lint.yml
vendored
7
.github/workflows/lint.yml
vendored
|
@ -11,6 +11,13 @@ jobs:
|
|||
go-version: "1.20.x"
|
||||
- name: Check that no non-test files import Ginkgo or Gomega
|
||||
run: .github/workflows/no_ginkgo.sh
|
||||
- name: Check for //go:build ignore in .go files
|
||||
run: |
|
||||
IGNORED_FILES=$(grep -rl '//go:build ignore' . --include='*.go') || true
|
||||
if [ -n "$IGNORED_FILES" ]; then
|
||||
echo "::error::Found ignored Go files: $IGNORED_FILES"
|
||||
exit 1
|
||||
fi
|
||||
- name: Check that go.mod is tidied
|
||||
run: |
|
||||
cp go.mod go.mod.orig
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue