Skip to content

Check links

Check links #1

Workflow file for this run

name: Check Links
on:
schedule:
- cron: '0 1 * * 4' # every Thursday, at 1AM
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Muffet
run: |
sudo apt-get update
sudo apt-get install muffet
- name: Run check links
run: |
make check-links-logs
- name: Upload logs
uses: actions/upload-artifact@v3
with:
name: check-links-log
path: scripts/check_links.log