From aff336d4e7c104391033184d6117a2d9f77e6e62 Mon Sep 17 00:00:00 2001 From: Mario Trangoni Date: Mon, 16 Apr 2018 11:44:50 +0200 Subject: [PATCH] add codespell to circleci --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index cfa8b762e49..fc04e69af6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: