Skip to content

docs: update maintained branches table #44

docs: update maintained branches table

docs: update maintained branches table #44

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 $?