Check links on live website #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check links on live website | |
on: | |
schedule: | |
# run automatically on the first of the month | |
- cron: '5 1 1 * *' | |
workflow_dispatch: | |
jobs: | |
check-links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install | |
run: pip3 install linkchecker | |
- name: Check links with linkcheck | |
run: linkchecker --check-extern https://sbolstandard.org/ |