open-nomad/.circleci/config/jobs/lint-go.yml
Mahmood Ali 396f776aa5 ci: run static generators as part of CI
These are used by release process, so add them to CI to notice if we
break release scripts.
2020-06-04 18:23:29 -04:00

14 lines
441 B
YAML

executor: go
steps:
- checkout
- run: apt-get update; apt-get install -y shellcheck sudo unzip
- install-protoc
- install-circleci-local-cli
- run: make deps lint-deps
- run: make check
- run: make checkscripts
- run: mkdir -p ui/dist && make generate-all static-assets
- run:
name: check .circleci/config.yml is up-to-date
command: make -C .circleci CIRCLECI="circleci-local-cli --skip-update-check" ci-verify