Add codespell to circleci.
Signed-off-by: Ben Kochie <superq@gmail.com>
This commit is contained in:
parent
bde511b521
commit
64484cc254
|
@ -13,6 +13,15 @@ jobs:
|
||||||
- run: make
|
- run: make
|
||||||
- run: rm -v node_exporter
|
- run: rm -v node_exporter
|
||||||
|
|
||||||
|
codespell:
|
||||||
|
docker:
|
||||||
|
- image: circleci/python
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: sudo pip install codespell
|
||||||
|
- run: codespell --skip=".git,./vendor"
|
||||||
|
|
||||||
build:
|
build:
|
||||||
machine: true
|
machine: true
|
||||||
working_directory: /home/circleci/.go_workspace/src/github.com/prometheus/node_exporter
|
working_directory: /home/circleci/.go_workspace/src/github.com/prometheus/node_exporter
|
||||||
|
@ -134,6 +143,10 @@ workflows:
|
||||||
filters:
|
filters:
|
||||||
tags:
|
tags:
|
||||||
only: /.*/
|
only: /.*/
|
||||||
|
- codespell:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /.*/
|
||||||
- docker_hub_master:
|
- docker_hub_master:
|
||||||
requires:
|
requires:
|
||||||
- test
|
- test
|
||||||
|
|
Loading…
Reference in New Issue