-
Notifications
You must be signed in to change notification settings - Fork 39
43 lines (34 loc) · 1.28 KB
/
link-validator.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Link Validator
permissions: {}
on:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1'
jobs:
validate-links:
runs-on: ubuntu-20.04
if: github.repository == 'apache/incubator-pekko-http'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Checkout GitHub merge
if: github.event.pull_request
run: |-
git fetch origin pull/${{ github.event.pull_request.number }}/merge:scratch
git checkout scratch
# needs Java 8, see https://github.com/apache/incubator-pekko-http/pull/204#discussion_r1265279415
- name: Setup Java 8
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- name: Cache Coursier cache
uses: coursier/cache-action@v6.4.0
- name: Setup Coursier
uses: coursier/setup-action@v1.3.3
# assign an arbitrary version number so that scripts/link-validator.conf has a predictable set of links to work with
- name: Create the Pekko site
run: sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"1.0.0\"; Javaunidoc/doc; Compile/unidoc; docs/paradox"
- name: Run Link Validator
run: cs launch net.runne::site-link-validator:0.2.2 -- scripts/link-validator.conf