All checks were successful
Test execution / Test-all (push) Successful in 1m37s
The codespell workflow is still broken. This commit allows manual triggering to determine the error cause.
22 lines
406 B
YAML
22 lines
406 B
YAML
# Codespell configuration is within `pyproject.toml`
|
|
---
|
|
name: Codespell
|
|
|
|
on: workflow_dispatch
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
name: Check for spelling errors
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
ignore_words_list: crate
|