aboutsummaryrefslogtreecommitdiffstats
path: root/etc/woodpecker/spell.yml
blob: 78ce57f8b2b841e6cf0380e209f7227ce5e68d15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
when:
  branch: master

# NOTE: codespell not available on stable alpine, grab it from pip
steps:
  spell-check:
    image: alpine:edge
    commands: |
      apk add --no-cache python3 py3-pip git
      python3 -m venv ~/py3-venv
      . ~/py3-venv/bin/activate
      pip install codespell
      git ls-files | sed '/\.png$/d' | xargs codespell