python.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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-18.04
  14. strategy:
  15. matrix:
  16. python-version:
  17. - 3.8
  18. steps:
  19. - uses: actions/checkout@v2.3.4
  20. - uses: actions/setup-python@v2.2.2
  21. with:
  22. python-version: ${{ matrix.python-version }}
  23. - run: pip install --upgrade pipenv==2020.8.13
  24. - run: sudo apt-get update
  25. # TODO exclude dbus-python & PyGObject from pipenv install
  26. - run: sudo apt-get install --yes --no-install-recommends
  27. libdbus-1-dev
  28. libgirepository1.0-dev
  29. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  30. env:
  31. PYTHON_VERSION: ${{ matrix.python-version }}
  32. - run: pipenv graph
  33. - run: pipenv run black --check .
  34. tests:
  35. runs-on: ubuntu-18.04
  36. strategy:
  37. matrix:
  38. python-version:
  39. - 3.5
  40. - 3.6
  41. - 3.7
  42. - 3.8
  43. - 3.9
  44. fail-fast: false
  45. steps:
  46. - uses: actions/checkout@v2.3.4
  47. - uses: actions/setup-python@v2.2.2
  48. with:
  49. python-version: ${{ matrix.python-version }}
  50. - run: pip install --upgrade pipenv==2020.8.13
  51. - run: sudo apt-get update
  52. - run: sudo apt-get install --yes --no-install-recommends
  53. libdbus-1-dev
  54. libgirepository1.0-dev
  55. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  56. env:
  57. PYTHON_VERSION: ${{ matrix.python-version }}
  58. - run: pipenv graph
  59. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  60. # https://github.com/PyCQA/pylint/issues/3882
  61. - run: python3 -c 'import sys; sys.exit(sys.version_info < (3, 9))'
  62. || pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  63. # https://github.com/PyCQA/pylint/issues/352
  64. - run: python3 -c 'import sys; sys.exit(sys.version_info < (3, 9))'
  65. || pipenv run pylint tests/*
  66. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  67. # >=2.1.0 to support GITHUB_TOKEN
  68. # COVERALLS_REPO_TOKEN required manual configuration of secret
  69. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  70. - run: pip install 'coveralls>=2.1.0,<4'
  71. - run: coveralls
  72. env:
  73. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  74. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  75. COVERALLS_SERVICE_NAME: github