Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/_check_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
- name: Run actionlint
uses: rhysd/actionlint@v1.7.9

spell_check:
name: Spell check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Check spelling with typos
uses: crate-ci/typos@v1.40.0

lint_check:
name: Lint check
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
Expand Down
17 changes: 17 additions & 0 deletions typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Configuration for typos spell checker
# https://github.com/crate-ci/typos

[default]
extend-ignore-re = [
"https?://[^\\s]+", # Ignore URLs
"'gASV[^']+", # Ignore base64-encoded pickle data
]

[files]
# Extend the default exclude list
extend-exclude = [
"*.lock",
"*.min.js",
"*.min.css",
"CHANGELOG.md",
]