We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff5a31 commit 25ed784Copy full SHA for 25ed784
1 file changed
.github/workflows/validate.yml
@@ -37,6 +37,27 @@ jobs:
37
with:
38
targets: ${{ matrix.target }}
39
40
+ # check that the generated Markdown and the checked-in files match
41
+ validate-md:
42
+ runs-on: ubuntu-20.04
43
+ steps:
44
+ -
45
+ name: Checkout
46
+ uses: actions/checkout@v3
47
48
+ name: Generate
49
+ shell: 'script --return --quiet --command "bash {0}"'
50
+ run: |
51
+ make -f docker.Makefile mddocs
52
53
+ name: Validate
54
55
+ if [[ $(git diff --stat) != '' ]]; then
56
+ echo 'fail: generated files do not match checked-in files'
57
+ git --no-pager diff
58
+ exit 1
59
+ fi
60
+
61
validate-make:
62
runs-on: ubuntu-20.04
63
strategy:
0 commit comments