summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.circleci/config.yml12
-rw-r--r--dev-requirements.txt2
2 files changed, 14 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
diff --git a/dev-requirements.txt b/dev-requirements.txt
index 8ed7eabc..b6a40dcc 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -9,6 +9,8 @@ pytest-xdist>=3
flake8>=4,<5
# Formatting!
black>=22.8,<22.9
+# Spelling!
+codespell>=2.2,<2.3
# Coverage!
coverage>=6.2,<7
codecov==2.1.12