python.yml 2.7 KB

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