Disable linter for lecture code

This commit is contained in:
Fedor Korotkiy 2020-04-09 12:07:26 +03:00
parent 3c0f8333e0
commit f4581660c4

View file

@ -1,8 +1,8 @@
check: check:
image: eu.gcr.io/shad-ts/grader/go-build image: eu.gcr.io/shad-ts/grader/go-build
script: script:
- golangci-lint run --build-tags private,solution ./...
- rm -rf lectures/ # do not run tests from lecture examples - rm -rf lectures/ # do not run tests from lecture examples
- golangci-lint run --build-tags private,solution ./...
- go test -v -tags private,solution ./... - go test -v -tags private,solution ./...
- go test -v -race -tags private,solution ./... - go test -v -race -tags private,solution ./...