Skip to content

refactor: remove processed key and handling code #47

refactor: remove processed key and handling code

refactor: remove processed key and handling code #47

Workflow file for this run

name: typos
on:
pull_request:
jobs:
fix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run codespell
continue-on-error: true
run: |
# .codespellrc is used
sudo apt-get install codespell -y
codespell -w --config .codespellrc
exit $?