Skip to content

Merge pull request #432 from VisLab/main #7

Merge pull request #432 from VisLab/main

Merge pull request #432 from VisLab/main #7

Workflow file for this run

---
name: Codespell
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codespell
- name: Run Codespell
run: codespell .