forked from quic-go/quic-go
14 lines
484 B
YAML
14 lines
484 B
YAML
on: [push, pull_request]
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check that no non-test files import Ginkgo or Gomega
|
|
run: .github/workflows/no_ginkgo.sh
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
|
|
version: v1.31
|