Skip to content

Update http requirement from 0.2.9 to 1.0.0 #30

Update http requirement from 0.2.9 to 1.0.0

Update http requirement from 0.2.9 to 1.0.0 #30

Workflow file for this run

name: Links checker
on:
push:
branches: ["main"]
tags: ["v*"]
pull_request:
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restore lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Link Checker
uses: lycheeverse/lychee-action@v1.8.0
with:
fail: true
args: "--cache --max-cache-age 1d ."
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}