mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
ci: run linter on all supported Go versions (#4126)
This commit is contained in:
parent
30f9c0139f
commit
1bcec70978
1 changed files with 7 additions and 2 deletions
9
.github/workflows/lint.yml
vendored
9
.github/workflows/lint.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
- uses: actions/setup-go@v4
|
- uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
skip-pkg-cache: true
|
skip-pkg-cache: true
|
||||||
go-version: "1.20.x"
|
go-version: "1.21.x"
|
||||||
- name: Check that no non-test files import Ginkgo or Gomega
|
- name: Check that no non-test files import Ginkgo or Gomega
|
||||||
run: .github/workflows/no_ginkgo.sh
|
run: .github/workflows/no_ginkgo.sh
|
||||||
- name: Check for //go:build ignore in .go files
|
- name: Check for //go:build ignore in .go files
|
||||||
|
@ -36,11 +36,16 @@ jobs:
|
||||||
go mod vendor
|
go mod vendor
|
||||||
golangci-lint:
|
golangci-lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
go: [ "1.20.x", "1.21.x" ]
|
||||||
|
name: golangci-lint (Go ${{ matrix.go }})
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-go@v4
|
- uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: "1.20.x"
|
go-version: ${{ matrix.go }}
|
||||||
- name: golangci-lint (Linux)
|
- name: golangci-lint (Linux)
|
||||||
uses: golangci/golangci-lint-action@v3
|
uses: golangci/golangci-lint-action@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue