We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b376d commit 2953e86Copy full SHA for 2953e86
.github/workflows/codespell.yml
@@ -0,0 +1,12 @@
1
+# GitHub Action to automate the identification of common misspellings in text files
2
+# https://github.com/codespell-project/codespell
3
+name: codespell
4
+on: [push, pull_request]
5
+jobs:
6
+ codespell:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/setup-python@v1
11
+ - run: pip install codespell flake8
12
+ - run: codespell
0 commit comments