10 lines
222 B
YAML
10 lines
222 B
YAML
|
pipeline:
|
||
|
lint:
|
||
|
image: golang:latest
|
||
|
group: lint
|
||
|
commands:
|
||
|
- ./.ci/check-testfiles
|
||
|
- ./.ci/check-gofmt
|
||
|
- go install github.com/client9/misspell/cmd/misspell@latest
|
||
|
- misspell -error .
|