python.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. - uses: actions/setup-python@v4
  41. with:
  42. python-version: ${{ matrix.python-version }}
  43. # test_read_triangular_locale & test_write_triangular_same_locale
  44. - run: sudo locale-gen de_AT.utf8
  45. - run: pip install --upgrade pipenv==2020.8.13
  46. # by default pipenv picks the latest version in PATH
  47. - run: pipenv --python "$(which python)" install --deploy --dev
  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. - run: pipenv run pylint tests/*
  53. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  54. test-examples:
  55. runs-on: ubuntu-20.04
  56. strategy:
  57. matrix:
  58. python-version:
  59. - '3.7'
  60. - '3.8'
  61. - '3.9'
  62. - '3.10'
  63. fail-fast: false
  64. defaults:
  65. run:
  66. working-directory: examples/
  67. steps:
  68. - uses: actions/checkout@v3
  69. - uses: actions/setup-python@v4
  70. with:
  71. python-version: ${{ matrix.python-version }}
  72. - run: pip install --upgrade pipenv==2020.8.13
  73. - run: pipenv --python "$(which python)" install --deploy --dev
  74. - run: pipenv graph
  75. # > the default behaviour is to abort conversion [...] if one of the cells throws an error
  76. - run: pipenv run jupyter nbconvert --execute --inplace *.ipynb
  77. # revert line specifying version of python interpreter
  78. - run: sudo apt-get update
  79. - run: sudo apt-get install --yes --no-install-recommends patchutils
  80. - run: >-
  81. git diff --unified=0
  82. | grepdiff --output-matching=hunk '^( "version":| "execution": {)'
  83. | patch --reverse