8000 Add codespell (config, workflow, pre-commit) to detect new typos, fix found typos by yarikoptic · Pull Request #540 · pyparsing/pyparsing · GitHub
[go: up one dir, main page]

Skip to content

Add codespell (config, workflow, pre-commit) to detect new typos, fix found typos #540

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Add pre-commit workflow
this particular setup borrowed from lark's mypy workflow
  • Loading branch information
yarikoptic committed Feb 15, 2024
commit 4ecf11b0a0ff7d9111c431ed8d9a738fced6997e
10 changes: 10 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Pre-commit
on: [push, pull_request]
jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.1
0