python.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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@v4
  19. - uses: actions/setup-python@v4
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv==2023.6.18
  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.8'
  34. - '3.9'
  35. - '3.10'
  36. fail-fast: false
  37. steps:
  38. - uses: actions/checkout@v4
  39. with:
  40. lfs: true # tests/resources/
  41. - uses: actions/setup-python@v4
  42. with:
  43. python-version: ${{ matrix.python-version }}
  44. # with pipenv v2023.6.26:
  45. # > $ pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)"
  46. # . --cov-report=term-missing --cov-fail-under=100
  47. # > cat: '*.egg-info/top_level.txt': No such file or directory
  48. # > [...]
  49. # > [...]/coverage/inorout.py:507: CoverageWarning:
  50. # . Module was never imported. (module-not-imported)
  51. - run: pip install --upgrade pipenv==2023.6.18
  52. # by default pipenv picks the latest version in PATH
  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=77
  58. - run: pipenv run pylint "$(cat *.egg-info/top_level.txt)"
  59. # workaround pylint reporting:
  60. # > E0401: Unable to import 'ical2vdir' (import-error)
  61. # pyproject.toml broken?
  62. - run: >-
  63. printenv GITHUB_WORKSPACE
  64. | tee "$(pipenv --venv)/lib/python${PYTHON_VERSION}/site-packages/easy-install.pth"
  65. env:
  66. PYTHON_VERSION: ${{ matrix.python-version }}
  67. # https://github.com/PyCQA/pylint/issues/352
  68. # disable parse-error due to:
  69. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  70. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  71. - run: pipenv run pylint --disable=parse-error tests/*
  72. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  73. - uses: coverallsapp/github-action@v2