Skip to content

Commit 10bc073

Browse files
add link checking GHA, carried over from travis
1 parent 02f5cb2 commit 10bc073

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/check_links.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: check_links
2+
3+
on:
4+
push:
5+
branches: [ '*' ]
6+
pull_request:
7+
branches: [ '*' ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Ruby 2.6
17+
uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: '2.6'
20+
- name: Checks
21+
run: |
22+
gem install awesome_bot
23+
awesome_bot awesome_bot *.md --allow-redirect --allow-ssl --allow-dupe
24+

0 commit comments

Comments
 (0)