blob: 2b478cb632e8a4bfc466433f23cba156ea232dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: Check Table of Contents (comment /regenerate-toc to auto-fix)
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./docs/build_toc.sh --check-only
|