Change to windows-latest to test if ada-europe.org is still failing #63
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
name: Check Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
schedule: | |
# Run every sunday at 00:00 AM. | |
- cron: "0 0 * * 0" | |
pull_request: | |
branches: [master] | |
paths: | |
- 'README.md' | |
- '.github/workflows/main.yml' | |
jobs: | |
main: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
# Check only README.md | |
args: README.md | |
# Use markdown as output format (alternative is json) | |
format: markdown | |
# Fail action on broken links | |
fail: true |