Files
codespell/.github/workflows/codespell-windows.yml
dependabot[bot] 2f330f72da Bump codecov/codecov-action from 4 to 5
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-15 09:25:55 +01:00

31 lines
747 B
YAML

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@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}