diff options
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 1a1a4076..f18b6ff9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -42,6 +42,16 @@ jobs: - run: inv test - orb/debug + # TODO: move to orb, rub on other projects too + spellcheck: + executor: + name: orb/default + version: "3.6" + steps: + - orb/setup + - run: codespell + - orb/debug + workflows: main: @@ -51,6 +61,8 @@ workflows: name: Lint - orb/format: name: Style check + - spellcheck: + name: Spellcheck # Main test run, w/ coverage, and latest-supported cryptography - orb/coverage: name: Test |