docs.yml 605 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. name: Docs
  3. on:
  4. push:
  5. branches:
  6. - master
  7. paths:
  8. - '**.md'
  9. pull_request:
  10. paths:
  11. - '**.md'
  12. env:
  13. DISABLE_TELEMETRY: 1
  14. jobs:
  15. markdown-link-check:
  16. name: Broken Links
  17. runs-on: ubuntu-latest
  18. steps:
  19. - name: Checkout
  20. uses: actions/checkout@v3
  21. with:
  22. submodules: recursive
  23. - name: Run link check
  24. uses: gaurav-nelson/github-action-markdown-link-check@v1
  25. with:
  26. use-quiet-mode: 'no'
  27. use-verbose-mode: 'yes'
  28. check-modified-files-only: 'yes'
  29. config-file: '.mlc_config.json'