Github Page CI #142
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: Github Page CI | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
check_urls: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
# Twitter, Linkedin and mailto doesn't seems to be reachable even if they work 🤔 | |
args: . --exclude "(https.*twitter\.com.*|https.*linkedin\.com.*|.*benkio89\@gmail\.com.*)" | |
fail: true |