Skip to content

Ignore archive.org timeouts #138

Ignore archive.org timeouts

Ignore archive.org timeouts #138

Workflow file for this run

name: Linkcheck
on:
pull_request:
push: {branches-ignore: ["**_pr"]}
jobs:
linkcheck:
name: Linkcheck
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Initialize Python and Poetry
uses: ./.github/actions/init
with:
python-version: "3.10"
- name: Run linkcheck
env:
RETRY: 3
SLEEP_FOR: 10
run: |
set -ex
until make linkcheck; do
if (( i++ < RETRY )); then
echo Retrying...
sleep "$SLEEP_FOR"
else
exit 1
fi
done