Use github action to check and verify doc
This commit is contained in:
parent
c9df233d24
commit
ed9b1bea3f
3 changed files with 22 additions and 3 deletions
20
.github/workflows/check_doc.yml
vendored
Normal file
20
.github/workflows/check_doc.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: Check Documentation
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
docs:
|
||||||
|
name: Check, verify and build documentation
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Check documentation
|
||||||
|
run: make docs-pull-images docs
|
|
@ -16,7 +16,6 @@ env:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- echo "Skipping tests... (Tests are executed on SemaphoreCI)"
|
- echo "Skipping tests... (Tests are executed on SemaphoreCI)"
|
||||||
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then travis_retry make docs-pull-images && make docs; fi
|
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- >
|
- >
|
||||||
|
|
|
@ -24,8 +24,8 @@ RUN apk --no-cache --no-progress add \
|
||||||
RUN npm config set unsafe-perm true
|
RUN npm config set unsafe-perm true
|
||||||
|
|
||||||
RUN npm install --global \
|
RUN npm install --global \
|
||||||
markdownlint@0.17.2 \
|
markdownlint@0.22.0 \
|
||||||
markdownlint-cli@0.19.0
|
markdownlint-cli@0.26.0
|
||||||
|
|
||||||
# Finally the shell tools we need for later
|
# Finally the shell tools we need for later
|
||||||
# tini helps to terminate properly all the parallelized tasks when sending CTRL-C
|
# tini helps to terminate properly all the parallelized tasks when sending CTRL-C
|
||||||
|
|
Loading…
Reference in a new issue