-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Check URLs | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: urls-checker | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
# A comma-separated list of file types to cover in the URL checks | ||
file_types: .md,.py,.ipynb | ||
|
||
# Choose whether to include file with no URLs in the prints. | ||
print_all: false | ||
|
||
# The timeout seconds to provide to requests, defaults to 5 seconds | ||
timeout: 5 | ||
|
||
# How many times to retry a failed request (each is logged, defaults to 1) | ||
retry_count: 3 | ||
|
||
# choose if the force pass or not | ||
force_pass : false |