aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codespell.yml
blob: feadb9a34b8ea52d53da5216dbfc8aec96078435 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
  push:
    branches: [develop]
  pull_request:
    branches: [develop]

permissions:
  contents: read

jobs:
  codespell:
    name: Check for spelling errors
    runs-on: ubuntu-22.04

    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Codespell
        uses: codespell-project/actions-codespell@v2