-
Notifications
You must be signed in to change notification settings - Fork 3
83 lines (73 loc) · 2.17 KB
/
documentation.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Documentation
on:
workflow_dispatch: # Manually triggered workflow until docs are ready
pull_request:
paths:
- 'docs/**'
# push:
# branches:
# - main
# tags-ignore: [ v.* ]
permissions:
contents: read
pull-requests: write
jobs:
# make-docs:
# name: "Make docs"
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout
# # https://github.com/actions/checkout/releases
# # v4.1.1
# uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
#
# - name: Cache Coursier cache
# # https://github.com/coursier/cache-action/releases
# # v6.4.5
# uses: coursier/cache-action@1ff273bff02a8787bc9f1877d347948af647956d
#
# - name: Set up JDK 21
# # https://github.com/coursier/setup-action/releases
# # v1.3.5
# uses: coursier/setup-action@7bde40eee928896f074dbb76d22dd772eed5c65f
# with:
# jvm: temurin:1.21
#
# - name: Make docs and validate links
# run: make managed local validate-links
vale:
name: "Vale style checking"
runs-on: ubuntu-22.04
if: github.event.repository.fork == false
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Asciidoctor
run: |
sudo apt-get update
sudo apt-get install -y asciidoctor
# https://vale.sh
- name: Vale
# https://github.com/errata-ai/vale-action/releases
# v2.1.1
uses: errata-ai/vale-action@d89dee975228ae261d22c15adcd03578634d429c
with:
version: 3.7.1
files: docs/src
fail_on_error: true
filter_mode: nofilter
vale_flags: "--config=docs/.vale.ini"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
verify-include-paths:
runs-on: ubuntu-22.04
steps:
- name: Checkout
# https://github.com/actions/checkout/releases
# v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Run path verification script
run:
./docs/bin/verify-include-paths.sh