You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
382 B

  1. name: "Validate links"
  2. on:
  3. schedule:
  4. - cron: '0 0 * * *'
  5. push:
  6. branches:
  7. - master
  8. env:
  9. FORMAT_FILE: README.md
  10. jobs:
  11. test:
  12. name: 'Validate links'
  13. runs-on: ubuntu-latest
  14. steps:
  15. - name: Checkout repository
  16. uses: actions/checkout@v2
  17. - name: Validate all links from README.md
  18. run: build/validate_links.py ${FORMAT_FILE}