Skip to content

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #936

Add codespell support (config, workflow to detect/not fix) and make it fix few typos

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #936

Workflow file for this run

# Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org>
# Licensed under GPL v3 or later
name: Run the test suite
on:
- pull_request
- push
jobs:
run-tests:
name: Run the test suite
strategy:
matrix:
python-version: ["3.10", 3.14] # no particular need for in-between versions
runs-on: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Run the test suite
run: |
set -x
python3 --version
pip3 install -U pip setuptools wheel
pip3 install ".[tests]" # for test dependencies
pip3 install -U pytest # for a test runner
exec pytest -v -Wdefault -Werror