ci: combine the go generate workflow with the linting workflow (#4053)

* ci: combine the go generate workflow with the linting workflow

* reorder
This commit is contained in:
Marten Seemann 2023-09-15 23:56:20 +07:00 committed by GitHub
parent 5b25d8b5be
commit 22eac50276
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 13 deletions

View file

@ -1,13 +0,0 @@
on: [push, pull_request]
jobs:
gogenerate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.20.x"
- name: Install dependencies
run: go build
- name: Run code generators
run: .github/workflows/go-generate.sh

View file

@ -19,13 +19,18 @@ jobs:
exit 1 exit 1
fi fi
- name: Check that go.mod is tidied - name: Check that go.mod is tidied
if: success() || failure() # run this step even if the previous one failed
run: | run: |
cp go.mod go.mod.orig cp go.mod go.mod.orig
cp go.sum go.sum.orig cp go.sum go.sum.orig
go mod tidy go mod tidy
diff go.mod go.mod.orig diff go.mod go.mod.orig
diff go.sum go.sum.orig diff go.sum go.sum.orig
- name: Run code generators
if: success() || failure() # run this step even if the previous one failed
run: .github/workflows/go-generate.sh
- name: Check that go mod vendor works - name: Check that go mod vendor works
if: success() || failure() # run this step even if the previous one failed
run: | run: |
cd integrationtests/gomodvendor cd integrationtests/gomodvendor
go mod vendor go mod vendor