Commit 3801df5d by Carl Bergquist Committed by GitHub

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

add codespell to CircleCI
parents 5b968329 aff336d4
version: 2 version: 2
jobs: 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: test-frontend:
docker: docker:
- image: circleci/node:6.11.4 - image: circleci/node:6.11.4
...@@ -103,6 +115,10 @@ workflows: ...@@ -103,6 +115,10 @@ workflows:
version: 2 version: 2
test-and-build: test-and-build:
jobs: jobs:
- codespell:
filters:
tags:
only: /.*/
- build: - build:
filters: filters:
tags: tags:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment