python.yml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # sync with https://github.com/fphammerle/ical2vdir/blob/master/.github/workflows/python.yml
  2. # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
  3. # shown in badge
  4. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  5. name: tests
  6. on:
  7. push:
  8. pull_request:
  9. schedule:
  10. - cron: '0 20 * * 5'
  11. jobs:
  12. code-format:
  13. runs-on: ubuntu-20.04
  14. strategy:
  15. matrix:
  16. python-verison: ['3.9']
  17. steps:
  18. - uses: actions/checkout@v2.3.4
  19. - uses: actions/setup-python@v2.2.2
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv==2020.8.13
  23. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  24. env:
  25. PYTHON_VERSION: ${{ matrix.python-version }}
  26. - run: pipenv graph
  27. - run: pipenv run black --check .
  28. tests:
  29. runs-on: ubuntu-20.04
  30. strategy:
  31. matrix:
  32. python-version:
  33. - 3.5
  34. - 3.6
  35. - 3.7
  36. - 3.8
  37. - 3.9
  38. fail-fast: false
  39. steps:
  40. - uses: actions/checkout@v1
  41. - uses: actions/setup-python@v1
  42. with:
  43. python-version: ${{ matrix.python-version }}
  44. - run: pip install --upgrade pipenv==2020.8.13
  45. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  46. env:
  47. PYTHON_VERSION: ${{ matrix.python-version }}
  48. - run: pipenv graph
  49. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=94
  50. # https://github.com/PyCQA/pylint/issues/3882
  51. - run: python3 -c 'import sys; sys.exit(sys.version_info < (3, 9))'
  52. || pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  53. # https://github.com/PyCQA/pylint/issues/352
  54. - run: pipenv run pylint tests/*
  55. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  56. # >=2.1.0 to support GITHUB_TOKEN
  57. # COVERALLS_REPO_TOKEN required manual configuration of secret
  58. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  59. - run: pip install 'coveralls>=2.1.0,<4'
  60. - run: coveralls
  61. env:
  62. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  63. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  64. COVERALLS_SERVICE_NAME: github
  65. check-links:
  66. runs-on: ubuntu-20.04
  67. strategy:
  68. matrix:
  69. python-verison: ['3.9']
  70. steps:
  71. - uses: actions/checkout@v2.3.4
  72. - uses: actions/setup-python@v2.2.2
  73. with:
  74. python-version: ${{ matrix.python-version }}
  75. - run: pip install --upgrade pipenv==2020.8.13
  76. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  77. env:
  78. PYTHON_VERSION: ${{ matrix.python-version }}
  79. - run: pipenv graph
  80. # `--include '*.md'` fails for https://securipi.co.uk/cc1101.pdf (HTTP403).
  81. # `--include '*.py'` identifies `logging.INFO` as an url.
  82. - run: pipenv run blinkcheck --include CHANGELOG.md