Skip to content

New exercise: Sieve #109

New exercise: Sieve

New exercise: Sieve #109

Workflow file for this run

name: Links
on:
pull_request:
paths:
# - '.github/workflows/links.yml' Temporarily disabled by @Stargator
- 'concept/**/*.md'
- 'concept/**/links.json'
- 'docs/*.md'
# - 'exercises/**/*.md' Temporarily disabled by @Stargator
- 'reference/*.md'
- '*.md'
- '**/**/*.md'
- '**/*.md'
repository_dispatch:
workflow_dispatch:
jobs:
linkChecker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Link Checker
uses: lycheeverse/lychee-action@22134d37a1fff6c2974df9c92a7c7e1e86a08f9c
with:
args: --verbose --no-progress --require-https .
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}