Skip to content

ci: add codespell workflow #1

ci: add codespell workflow

ci: add codespell workflow #1

Workflow file for this run

---
name: codespell
on: # yamllint disable-line rule:truthy
push:
branches:
- main
- master
pull_request:
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run codespell
uses: codespell-project/actions-codespell@v2