fix typo in workflow #4
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: Urls checking | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Urlshecker | |
uses: urlstechie/urlchecker-action@master | |
with: | |
# A project to clone. If not provided, assumes already cloned in the present working directory. | |
git_path: https://github.com/SuperKogito/SER-datasets | |
# Delete the cloned repository after running URLchecked (default is false) | |
cleanup: true | |
# A comma-separated list of file types to cover in the URL checks | |
file_types: ".md" | |
# 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: 9 | |
# 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 : true |