mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
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:
parent
5b25d8b5be
commit
22eac50276
2 changed files with 5 additions and 13 deletions
13
.github/workflows/go-generate.yml
vendored
13
.github/workflows/go-generate.yml
vendored
|
@ -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
|
|
5
.github/workflows/lint.yml
vendored
5
.github/workflows/lint.yml
vendored
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue