-
Notifications
You must be signed in to change notification settings - Fork 1k
33 lines (32 loc) · 1000 Bytes
/
build.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
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.5
bundler-cache: true
- name: Set up coursier
uses: coursier/[email protected]
with:
jvm: adopt:11
- name: Run mdoc
run: |
./scripts/run-mdoc.sh
rm -r /tmp/mdoc-out/
- name: Jekyll build
run: bundle exec jekyll build
- name: HTMLProofer
run: |
# # Checking for docs.scala-lang/blob/main leads to a chicken and egg problem because of the edit links of new pages.
bundle exec htmlproofer ./_site/\
--only-4xx\
--ignore-status-codes "400,401,403,429"\
--ignore-empty-alt\
--allow-hash-href\
--enforce-https=false\
--ignore-urls '/https://github.com/scala/,/www.oracle.com/'