python.yml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
  2. # shown in badge
  3. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  4. name: tests
  5. on:
  6. push:
  7. pull_request:
  8. schedule:
  9. - cron: '0 20 * * 5'
  10. jobs:
  11. code-format:
  12. runs-on: ubuntu-20.04
  13. strategy:
  14. matrix:
  15. python-verison: ['3.9']
  16. steps:
  17. - uses: actions/checkout@v2.3.4
  18. - uses: actions/setup-python@v2.2.2
  19. with:
  20. python-version: ${{ matrix.python-version }}
  21. - run: pip install --upgrade pipenv==2020.8.13
  22. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  23. env:
  24. PYTHON_VERSION: ${{ matrix.python-version }}
  25. - run: pipenv graph
  26. - run: pipenv run black --check .
  27. tests:
  28. runs-on: ubuntu-20.04
  29. strategy:
  30. matrix:
  31. python-version:
  32. - '3.6'
  33. - '3.7'
  34. - '3.8'
  35. - '3.9'
  36. - '3.10'
  37. fail-fast: false
  38. steps:
  39. - uses: actions/checkout@v2.3.4
  40. - uses: actions/setup-python@v2.2.2
  41. with:
  42. python-version: ${{ matrix.python-version }}
  43. - run: pip install --upgrade pipenv==2020.8.13
  44. # by default pipenv picks the latest version in PATH
  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=100
  50. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  51. # https://github.com/PyCQA/pylint/issues/352
  52. # disable parse-error due to:
  53. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  54. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  55. - run: pipenv run pylint --disable=parse-error tests/*
  56. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  57. # >=2.1.0 to support GITHUB_TOKEN
  58. # COVERALLS_REPO_TOKEN required manual configuration of secret
  59. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  60. - run: pip install 'coveralls>=2.1.0,<4'
  61. - run: coveralls
  62. env:
  63. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  64. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  65. COVERALLS_SERVICE_NAME: github
  66. check-links:
  67. runs-on: ubuntu-20.04
  68. strategy:
  69. matrix:
  70. python-verison: ['3.9']
  71. steps:
  72. - uses: actions/checkout@v2.3.4
  73. - uses: actions/setup-python@v2.2.2
  74. with:
  75. python-version: ${{ matrix.python-version }}
  76. - run: pip install --upgrade pipenv==2020.8.13
  77. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  78. env:
  79. PYTHON_VERSION: ${{ matrix.python-version }}
  80. - run: pipenv graph
  81. # `--include '*.md'` fails for https://securipi.co.uk/cc1101.pdf (HTTP403).
  82. # `--include '*.py'` identifies `logging.INFO` as an url.
  83. - run: pipenv run blinkcheck --include CHANGELOG.md