Add British variants of labael->label and friends #2518
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Codespell Windows | |
on: | |
- push | |
- pull_request | |
permissions: {} | |
jobs: | |
test-windows: | |
name: Test Windows | |
runs-on: windows-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python --version | |
pip install -U pip | |
pip install setuptools | |
pip install -e .[dev] | |
- run: codespell --help | |
- run: codespell --version | |
- run: pytest codespell_lib | |
- uses: codecov/codecov-action@v4 |