blob: 2c080ac4c94af61f5a6d3f3c59a412e011445054 (
plain) (
tree)
|
|
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
|