python.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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-version: ['3.9']
  17. steps:
  18. - uses: actions/checkout@v3
  19. - uses: actions/setup-python@v4
  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.7'
  34. - '3.8'
  35. - '3.9'
  36. - '3.10'
  37. fail-fast: false
  38. steps:
  39. - uses: actions/checkout@v3
  40. with:
  41. lfs: true # tests/resources/
  42. - uses: actions/setup-python@v4
  43. with:
  44. python-version: ${{ matrix.python-version }}
  45. - run: pip install --upgrade pipenv==2020.8.13
  46. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  47. env:
  48. PYTHON_VERSION: ${{ matrix.python-version }}
  49. - run: pipenv graph
  50. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=77
  51. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  52. # workaround pylint reporting:
  53. # > E0401: Unable to import 'ical2vdir' (import-error)
  54. # pyproject.toml broken?
  55. - run: >-
  56. printenv GITHUB_WORKSPACE
  57. | tee "$(pipenv --venv)/lib/python${PYTHON_VERSION}/site-packages/easy-install.pth"
  58. env:
  59. PYTHON_VERSION: ${{ matrix.python-version }}
  60. # https://github.com/PyCQA/pylint/issues/352
  61. # disable parse-error due to:
  62. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  63. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  64. - run: pipenv run pylint --disable=parse-error tests/*
  65. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  66. # >=2.1.0 to support GITHUB_TOKEN
  67. # COVERALLS_REPO_TOKEN required manual configuration of secret
  68. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  69. - run: pip install 'coveralls>=2.1.0,<4'
  70. - run: coveralls
  71. env:
  72. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  73. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  74. COVERALLS_SERVICE_NAME: github