Skip to content

Commit

Permalink
Vanilla check
Browse files Browse the repository at this point in the history
  • Loading branch information
ivadym committed Aug 7, 2023
1 parent 5434606 commit 7b9324e
Showing 1 changed file with 24 additions and 12 deletions.
36 changes: 24 additions & 12 deletions .github/workflows/check_urls.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
name: Check URLs

on: push
on: [push]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: URLs checker
uses: urlstechie/urlchecker-action@master
with:
print_all: false
timeout: 5
retry_count: 3
file_types: .py
include_files: BALSAMIC/constants/cache.py
- uses: actions/checkout@v3
- name: urls-checker
uses: urlstechie/urlchecker-action@master
with:
# A subfolder or path to navigate to in the present or cloned repository
subfolder: docs

# A comma-separated list of file types to cover in the URL checks
file_types: .md,.py,.rst

# 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 : true

0 comments on commit 7b9324e

Please sign in to comment.