docs.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. name: Docs
  17. on:
  18. pull_request:
  19. schedule:
  20. - cron: '0 18 * * *' # TimeZone: UTC 0
  21. concurrency:
  22. group: doc-${{ github.event.pull_request.number || github.ref }}
  23. cancel-in-progress: true
  24. jobs:
  25. style:
  26. timeout-minutes: 10
  27. runs-on: ubuntu-latest
  28. steps:
  29. - uses: actions/checkout@v2
  30. - name: Style Check
  31. run: ./mvnw spotless:check
  32. img-check:
  33. timeout-minutes: 15
  34. runs-on: ubuntu-latest
  35. defaults:
  36. run:
  37. working-directory: docs
  38. steps:
  39. - uses: actions/checkout@v2
  40. - name: Set up Python 3.9
  41. uses: actions/setup-python@v2
  42. with:
  43. python-version: 3.9
  44. - name: Run Dev Relative Reference
  45. run: python img_utils.py -v dev-syntax
  46. - name: Run Image Check
  47. run: python img_utils.py -v check
  48. dead-link:
  49. if: (github.event_name == 'schedule' && github.repository == 'apache/dolphinscheduler') || (github.event_name != 'schedule')
  50. runs-on: ubuntu-latest
  51. timeout-minutes: 30
  52. steps:
  53. - uses: actions/checkout@v2
  54. - run: sudo npm install -g markdown-link-check@3.10.0
  55. # NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
  56. # if you want to run check locally
  57. - run: |
  58. for file in $(find . -name "*.md" -not \( -path ./deploy/terraform/aws/README.md -prune \)); do
  59. markdown-link-check -c .dlc.json -q "$file"
  60. done
  61. result:
  62. name: Docs
  63. runs-on: ubuntu-latest
  64. timeout-minutes: 30
  65. needs:
  66. - style
  67. - img-check
  68. - dead-link
  69. if: success()
  70. steps:
  71. - name: success
  72. run: |
  73. echo "Docs check success"
  74. exit 0