Validate URLs #153
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: Validate URLs | |
on: | |
push: | |
branches: | |
- main | |
paths: ["**.md", "**.yaml", "**.yml", "**.py", "**.pyi", "**.rst", "**.txt", "**.toml"] | |
schedule: | |
- cron: "0 0 * * *" # Run every day at midnight UTC | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Source | |
uses: actions/checkout@v4 | |
- name: Validate URLs | |
uses: urlstechie/[email protected] | |
with: | |
file_types: .md,.yaml,.yml,.py,.pyi,.rst,.txt,.toml | |
print_all: false | |
timeout: 10 | |
retry_count: 3 |