forked from TrueCloudLab/neoneo-go
Merge pull request #3420 from nspcc-dev/ensure-stringers
This commit is contained in:
commit
4a8a43b983
1 changed files with 26 additions and 0 deletions
26
.github/workflows/tests.yml
vendored
26
.github/workflows/tests.yml
vendored
|
@ -40,6 +40,32 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
./scripts/check_deps.sh
|
./scripts/check_deps.sh
|
||||||
|
|
||||||
|
codegencheck:
|
||||||
|
name: Check code generated with 'go generate' is up-to-date
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: actions/setup-go@v5
|
||||||
|
with:
|
||||||
|
go-version-file: 'go.mod'
|
||||||
|
|
||||||
|
- name: Install stringer
|
||||||
|
run: go install golang.org/x/tools/cmd/stringer@latest
|
||||||
|
|
||||||
|
- name: Run go generate
|
||||||
|
run: go generate ./...
|
||||||
|
|
||||||
|
- name: Check that autogenerated code is up-to-date
|
||||||
|
run: |
|
||||||
|
if [[ $(git diff --name-only | grep '' -c) != 0 ]]; then
|
||||||
|
echo "Fresh version of autogenerated code should be committed for the following files:";
|
||||||
|
git diff --name-only;
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
codeql:
|
codeql:
|
||||||
name: CodeQL
|
name: CodeQL
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue