Skip to content

Improve docs and fn names (#21) #12

Improve docs and fn names (#21)

Improve docs and fn names (#21) #12

Workflow file for this run

---
name: Spell Check
"on":
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
clean: false
- name: Install python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install and run codespell
run: |
python -m pip install codespell
make codespell