mirror of
https://github.com/decalage2/awesome-security-hardening.git
synced 2025-01-10 06:59:32 -05:00
18 lines
336 B
YAML
18 lines
336 B
YAML
|
name: Links (Fail Fast)
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
linkChecker:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Link Checker
|
||
|
uses: lycheeverse/lychee-action@v1.5.0
|
||
|
with:
|
||
|
fail: true
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|