Skip to content

Link checker

Link checker #4

Workflow file for this run

name: Link checker
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
schedule:
- cron: "0 0 1 * 0"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Check links
#FIXME Need to allow duplicates (same links on the same page)
run: |
gem install awesome_bot
awesome_bot --white-list https://gitlab-sim.informatik.uni-stuttgart.de/ --allow-ssl --allow-redirect --allow-dupe $(find . -iname "*.md" -type f)