Skip to content

Commit

Permalink
add link checking GHA, carried over from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
federicomarini committed Apr 26, 2024
1 parent 02f5cb2 commit 10bc073
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check_links.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: check_links

on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
- name: Checks
run: |
gem install awesome_bot
awesome_bot awesome_bot *.md --allow-redirect --allow-ssl --allow-dupe

0 comments on commit 10bc073

Please sign in to comment.