python.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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@v1
  20. - uses: actions/setup-python@v1
  21. with:
  22. python-version: ${{ matrix.python-version }}
  23. - run: pip install --upgrade pipenv==2020.8.13
  24. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  25. env:
  26. PYTHON_VERSION: ${{ matrix.python-version }}
  27. - run: pipenv graph
  28. - run: pipenv run black --check .
  29. tests:
  30. runs-on: ubuntu-18.04
  31. strategy:
  32. matrix:
  33. python-version:
  34. - 3.5
  35. - 3.6
  36. - 3.7
  37. - 3.8
  38. - 3.9
  39. fail-fast: false
  40. steps:
  41. - uses: actions/checkout@v1
  42. - uses: actions/setup-python@v1
  43. with:
  44. python-version: ${{ matrix.python-version }}
  45. # test_read_triangular_locale & test_write_triangular_same_locale
  46. - run: sudo locale-gen de_AT.utf8
  47. - run: pip install --upgrade pipenv==2020.8.13
  48. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  49. env:
  50. PYTHON_VERSION: ${{ matrix.python-version }}
  51. - run: pipenv graph
  52. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  53. # https://github.com/PyCQA/pylint/issues/3882
  54. - run: python3 -c 'import sys; sys.exit(sys.version_info < (3, 9))'
  55. || pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  56. # https://github.com/PyCQA/pylint/issues/352
  57. - run: pipenv run pylint tests/*
  58. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  59. # >=2.1.0 to support GITHUB_TOKEN
  60. # COVERALLS_REPO_TOKEN required manual configuration of secret
  61. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  62. - run: pip install 'coveralls>=2.1.0,<4'
  63. - run: coveralls
  64. env:
  65. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  66. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  67. COVERALLS_SERVICE_NAME: github
  68. test-examples:
  69. runs-on: ubuntu-18.04
  70. strategy:
  71. matrix:
  72. python-version:
  73. - 3.5
  74. - 3.6
  75. - 3.7
  76. - 3.8
  77. - 3.9
  78. fail-fast: false
  79. defaults:
  80. run:
  81. working-directory: examples/
  82. steps:
  83. - uses: actions/checkout@v1
  84. - uses: actions/setup-python@v1
  85. with:
  86. python-version: ${{ matrix.python-version }}
  87. - run: pip install --upgrade pipenv==2020.8.13
  88. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  89. env:
  90. PYTHON_VERSION: ${{ matrix.python-version }}
  91. - run: pipenv graph
  92. # > the default behaviour is to abort conversion [...] if one of the cells throws an error
  93. - run: pipenv run jupyter nbconvert --execute --inplace *.ipynb
  94. # revert line specifying version of python interpreter
  95. - run: sudo apt-get update
  96. - run: sudo apt-get install --yes --no-install-recommends patchutils
  97. - run: git diff --unified=0 | grepdiff --output-matching=hunk '^ "version":' | patch --reverse
  98. - run: git diff --exit-code