Skip to content

Add a link to Andrea Bizzotto's Dart guide #202

Add a link to Andrea Bizzotto's Dart guide

Add a link to Andrea Bizzotto's Dart guide #202

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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Link Checker
uses: lycheeverse/lychee-action@f796c8b7d468feb9b8c0a46da3fac0af6874d374
with:
args: --verbose --no-progress --require-https .
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}