learning goals refactoring #1178
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
# Check if any links are broken | |
name: Check links | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 16 * *" | |
jobs: | |
check_links: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Remove folders that do not care about broken links | |
run: | | |
rm -rf development_design | |
- uses: lycheeverse/[email protected] | |
with: | |
fail: true |