summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-27 18:04:51 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-27 18:17:07 -0500
commitf45df8274c4b1592ba07383bb11583f7c5562a38 (patch)
tree16a45ab6f2ccbc612a425f37f0bd6e561c5286ac
parent7d6d98b05a430b08c3d29f4aec7e1b39ba3b932e (diff)
downloadparamiko-f45df8274c4b1592ba07383bb11583f7c5562a38.tar.gz
Add codespell to dev-reqs, circleci2178-int
-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