py-ci.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements. See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. name: Python API
  16. on:
  17. push:
  18. branches:
  19. - dev
  20. paths:
  21. - 'dolphinscheduler-python/**'
  22. pull_request:
  23. paths:
  24. - 'dolphinscheduler-python/**'
  25. concurrency:
  26. group: py-${{ github.event.pull_request.number || github.ref }}
  27. cancel-in-progress: true
  28. defaults:
  29. run:
  30. working-directory: dolphinscheduler-python/pydolphinscheduler
  31. # We have to update setuptools wheel to package with package_data, LICENSE, NOTICE
  32. env:
  33. DEPENDENCES: pip setuptools wheel tox
  34. jobs:
  35. lint:
  36. name: Lint
  37. timeout-minutes: 15
  38. runs-on: ubuntu-latest
  39. steps:
  40. - uses: actions/checkout@v2
  41. - name: Set up Python 3.7
  42. uses: actions/setup-python@v2
  43. with:
  44. python-version: 3.7
  45. - name: Install Dependences
  46. run: |
  47. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  48. - name: Run All Lint Check
  49. run: |
  50. python -m tox -vv -e lint
  51. pytest:
  52. name: Pytest
  53. timeout-minutes: 15
  54. needs: lint
  55. runs-on: ${{ matrix.os }}
  56. strategy:
  57. fail-fast: false
  58. matrix:
  59. python-version: [3.6, 3.7, 3.8, 3.9]
  60. os: [ubuntu-18.04, macOS-latest, windows-latest]
  61. steps:
  62. - uses: actions/checkout@v2
  63. - name: Set up Python ${{ matrix.python-version }}
  64. uses: actions/setup-python@v2
  65. with:
  66. python-version: ${{ matrix.python-version }}
  67. - name: Install Dependences
  68. run: |
  69. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  70. - name: Run All Tests
  71. run: |
  72. python -m tox -vv -e code-test
  73. doc-build:
  74. name: Docs Build Test
  75. timeout-minutes: 15
  76. needs: lint
  77. runs-on: ubuntu-latest
  78. steps:
  79. - uses: actions/checkout@v2
  80. - name: Set up Python 3.7
  81. uses: actions/setup-python@v2
  82. with:
  83. python-version: 3.7
  84. - name: Install Dependences
  85. run: |
  86. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  87. - name: Run Tests Build Docs
  88. run: |
  89. python -m tox -vv -e doc-build-test
  90. verify-local-ci:
  91. name: Local CI
  92. timeout-minutes: 15
  93. needs:
  94. - pytest
  95. - doc-build
  96. runs-on: ubuntu-latest
  97. steps:
  98. - uses: actions/checkout@v2
  99. - name: Set up Python 3.7
  100. uses: actions/setup-python@v2
  101. with:
  102. python-version: 3.7
  103. - name: Install Dependences
  104. run: |
  105. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  106. - name: Run Tests Build Docs
  107. run: |
  108. python -m tox -vv -e local-ci