properly deprecating previously WIP concept exercises #222
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Link Checker | |
| uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 | |
| with: | |
| args: --verbose --no-progress --require-https . | |
| fail: true | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |