Skip to content

Add codespell check

Add codespell check #8

Workflow file for this run

name: Codespell Check
on:
push:
branches-ignore:
- 'main'
pull_request: ~
jobs:
linux:
runs-on: ubuntu-latest
name: "CI Codespell"
steps:
- name: 'Check Out'
uses: actions/checkout@v4
- name: 'Install codespell'
run: |
sudo apt-get -y install codespell
- name: 'Build & Test'
run: |
codespell -I ".codespell.ignore"