Grouping Tests: Fix syntax in code example #931
Workflow file for this run
This file contains 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
# This action checks for broken links | |
name: Check Links | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "00 00 * * *" | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🔗 Check Links | |
uses: lycheeverse/lychee-action@v1.10.0 | |
with: | |
fail: true | |
args: --config .github/workflows/lychee.toml './**/*.md' |