ci: Replace woke with codespell #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Codespell configuration is within .codespellrc | |
--- | |
name: Codespell | |
on: # yamllint disable-line rule:truthy | |
- pull_request | |
permissions: | |
contents: read | |
jobs: | |
codespell: | |
name: Check for spelling errors | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install codespell | |
run: pip install codespell | |
- name: Get variable with regex values | |
id: regexvar | |
run: | | |
curl -L -s -o dictionary_usage.txt https://raw.githubusercontent.com/codespell-project/codespell/refs/heads/main/codespell_lib/data/dictionary_usage.txt | |
regexvar=$(sed 's/->.*//g' dictionary_usage.txt | sed 's/$/|/' | tr -d '\n' | sed 's/.$//') | |
echo "$regexvar" | |
echo "regexvar=$regexvar" >> "$GITHUB_OUTPUT" | |
- name: Annotate locations with typos | |
uses: codespell-project/codespell-problem-matcher@v1 | |
with: | |
regex: ${{ steps.regexvar.outputs.regexvar }} | |
- name: Codespell | |
uses: codespell-project/actions-codespell@v2 | |
with: | |
regex: ${{ steps.regexvar.outputs.regexvar }} |