aboutsummaryrefslogtreecommitdiff
blob: 605d2bb99c730bd09d13b16045b1106d222b7ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# GitHub actions workflow.
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions

name: Codespell

on: [push, pull_request]

jobs:
  codespell:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - uses: codespell-project/actions-codespell@v2