12 lines
399 B
YAML
12 lines
399 B
YAML
branches: master
|
|
|
|
# NOTE: codespell not available on stable alpine, use edge
|
|
pipeline:
|
|
spell-check:
|
|
image: alpine:edge
|
|
commands: |
|
|
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing py3-codespell >/dev/null
|
|
find . \( -name '*.patch' -o -name '*.diff' -o -name '*.md' \) -print | \
|
|
xargs -I{} codespell {}
|
|
codespell nsxiv.1 config.mk Makefile
|