mirror of
https://github.com/codespell-project/codespell.git
synced 2025-08-06 18:24:41 +08:00
28 lines
663 B
YAML
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@v3
|
|
with:
|
|
persist-credentials: false
|
|
- name: Setup python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.7'
|
|
- 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
|