File: codespell-windows.yml

package info (click to toggle)
codespell 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,864 kB
  • sloc: python: 2,507; makefile: 58; ansic: 11
file content (30 lines) | stat: -rw-r--r-- 747 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 }}