30 lines
598 B
YAML
30 lines
598 B
YAML
name: Documentation
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # At 00:00 every Sunday
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
markdown-check:
|
|
name: Check Markdown
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Check links
|
|
uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
config-file: .github/workflows/mlc_config.json
|
|
|
|
- name: Lint
|
|
uses: avto-dev/markdown-lint@v1
|
|
with:
|
|
args: '**/*.md'
|
|
config: .github/workflows/lint/markdown.yaml
|