container-library/.woodpecker/docs.yml

31 lines
689 B
YAML
Raw Permalink Normal View History

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
2024-01-16 16:26:51 +01:00
- name: markdownlint
image: quay.io/thegeeklab/markdownlint-cli
2023-12-15 22:44:25 +01:00
group: test
commands:
- markdownlint 'README.md'
2024-01-16 16:26:51 +01:00
- name: spellcheck
image: quay.io/thegeeklab/alpine-tools
2023-12-15 22:44:25 +01:00
group: test
commands:
- spellchecker --files '_docs/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls
environment:
FORCE_COLOR: "true"
2024-01-16 16:26:51 +01:00
- name: link-validation
image: docker.io/lycheeverse/lychee
group: test
commands:
- lychee --no-progress --format detailed README.md
depends_on:
- build-package