File: codespell.yml

package info (click to toggle)
cockpit-machines 347-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 275,980 kB
  • sloc: javascript: 708,138; python: 14,367; cpp: 11,141; sh: 932; makefile: 159; xml: 88
file content (21 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: codespell
on: [pull_request, workflow_dispatch]
jobs:
  codespell:
    runs-on: ubuntu-latest
    permissions: {}

    steps:
      - name: Checkout
        uses: actions/checkout@v6
        with:
          fetch-depth: 0

      - name: Install codespell
        run: |
          python3 -m pip install --break-system-packages codespell

      - name: Run codespell
        timeout-minutes: 5
        run: |
          codespell src