Merge pull request #11602 from mjtrangoni/add-codespell-to-circle

add codespell to CircleCI
This commit is contained in:
Carl Bergquist 2018-04-17 19:02:32 +02:00 committed by GitHub
commit 3801df5da8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,18 @@
version: 2
jobs:
codespell:
docker:
- image: circleci/python
steps:
- checkout
- run:
name: install codespell
command: 'sudo pip install codespell'
- run:
name: check documentation spelling errors
command: 'codespell -x docs/sources/project/building_from_source.md docs/'
test-frontend:
docker:
- image: circleci/node:6.11.4
@ -103,6 +115,10 @@ workflows:
version: 2
test-and-build:
jobs:
- codespell:
filters:
tags:
only: /.*/
- build:
filters:
tags: