File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4949 run : |
5050 pre-commit run --all-files --show-diff-on-failure
5151
52+ manpage :
53+ name : Check manpage is in sync
54+ runs-on : ubuntu-22.04
55+ needs :
56+ - commit-validation
57+
58+ steps :
59+ - uses : actions/checkout@v5
60+ - name : Install pandoc
61+ run : |
62+ sudo apt update
63+ sudo apt install -y pandoc
64+ - name : Regenerate manpage
65+ run : |
66+ make docs/fluster.1
67+ - name : Ensure generated manpage is up-to-date
68+ run : |
69+ git diff --exit-code -- docs/fluster.1
70+
5271 min_linux :
5372 name : linux with min supported deps
5473 runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change 99 - ' v*.*.*'
1010
1111jobs :
12+ manpage :
13+ name : Check manpage is in sync
14+ runs-on : ubuntu-22.04
15+
16+ steps :
17+ - uses : actions/checkout@v5
18+ - name : Install pandoc
19+ run : |
20+ sudo apt update
21+ sudo apt install -y pandoc
22+ - name : Regenerate manpage
23+ run : |
24+ make docs/fluster.1
25+ - name : Ensure generated manpage is up-to-date
26+ run : |
27+ git diff --exit-code -- docs/fluster.1
28+
1229 min_linux :
1330 name : linux with min supported deps
1431 runs-on : ubuntu-22.04
@@ -110,6 +127,7 @@ jobs:
110127 runs-on : ubuntu-22.04
111128 concurrency : create_release
112129 needs :
130+ - manpage
113131 - min_linux
114132 - linux
115133 - windows
You can’t perform that action at this time.
0 commit comments