CI #1476
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: CI | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: [master] | |
schedule: | |
- cron: '55 5 * * *' | |
jobs: | |
val-links: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate links | |
uses: lycheeverse/lychee-action@v2.0.2 | |
with: | |
args: --config .github/workflows/lychee.toml -- README.md | |
# Write link validation summary to GH Job summary | |
jobSummary: true |