mirror of
https://github.com/autistic-symposium/decentralized-protocols-toolkit.git
synced 2025-05-19 15:10:26 -04:00
Create validate_urls.yml
This commit is contained in:
parent
86a6f0c7ab
commit
d8a739b4f5
1 changed files with 31 additions and 0 deletions
31
github/workflows/validate_urls.yml
Normal file
31
github/workflows/validate_urls.yml
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue