Skip to content

Commit

Permalink
ci: Run linkcheck step on schedule
Browse files Browse the repository at this point in the history
Fixes #1761
  • Loading branch information
BobDotCom committed Nov 14, 2022
1 parent 36ac4c6 commit 129d18f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Unit Tests

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down Expand Up @@ -71,6 +75,7 @@ jobs:
python -m pip install -U pip
pip install ".[docs]"
- name: Check Links
if: github.event_name == 'schedule'
run: |
cd docs
make linkcheck
Expand Down

0 comments on commit 129d18f

Please sign in to comment.