Skip to content

Commit

Permalink
Fix typo detected by codespell + add codespell workflow to avoid typo…
Browse files Browse the repository at this point in the history
…s sneaking in (#89)

Co-authored-by: Dmitry Inyutin <[email protected]>
  • Loading branch information
yarikoptic and inyutin authored Oct 26, 2024
1 parent 63bb639 commit 02fbb8d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[codespell]
skip = .git
19 changes: 19 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Codespell

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@v1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ This means that in example above we would request ```/ping``` once again in case

### Types

`aiohttp_retry` is a typed project. It should be fully compatablie with mypy.
`aiohttp_retry` is a typed project. It should be fully compatible with mypy.

It also introduce one special type:
```
Expand Down

0 comments on commit 02fbb8d

Please sign in to comment.