Files
codespell/.github/workflows/codespell-windows.yml
dependabot[bot] 63b45681f4 Bump actions/checkout from 3 to 4 (#3066)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-05 09:01:42 -04:00

28 lines
663 B
YAML

name: Test Codespell Windows
on:
- push
- pull_request
permissions: {}
jobs:
test-windows:
name: Test Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup python
uses: actions/setup-python@v4
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@v3