Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Create validate_urls.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
urani-engineering-helper authored Mar 24, 2024
1 parent 53051df commit c91747b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/validate_urls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Validate links

on: [push, pull_request]

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
unit:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v3

- name: set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true

- name: install awesome_bot
run: gem install awesome_bot

- name: validate URLs
run: awesome_bot README.md --allow-redirect --request-delay 0.4

0 comments on commit c91747b

Please sign in to comment.