utxo-prague/.github/workflows/link-check.yml

22 řádky
419 B
YAML
Surový Normální zobrazení Historie

2022-01-19 08:18:15 +01:00
name: Link checker
on:
2022-01-19 08:23:11 +01:00
push:
pull_request:
2022-01-19 08:18:15 +01:00
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.2.0
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
2022-01-19 08:33:19 +01:00
args: --verbose --no-progress spec/**/*.yaml --exclude-file .lycheeignore
2022-01-19 08:23:11 +01:00
fail: true
2022-01-19 08:18:15 +01:00