Skip to content

Commit a28f352

Browse files
committed
Add link checker
1 parent 8497042 commit a28f352

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/link_checker.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build and check links
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: ruby/setup-ruby@v1
13+
with:
14+
ruby-version: '3.0'
15+
bundler-cache: true
16+
17+
- name: Build
18+
run: make build
19+
20+
link-checker:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: '3.0'
27+
bundler-cache: true
28+
- name: Check links
29+
run: make check_links

0 commit comments

Comments
 (0)