python.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-24.04
  14. strategy:
  15. matrix:
  16. python-version: ['3.13']
  17. steps:
  18. - uses: actions/checkout@v5
  19. - uses: actions/setup-python@v6
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv==2024.1.0
  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-24.04
  30. strategy:
  31. matrix:
  32. python-version:
  33. - '3.10'
  34. - '3.11'
  35. fail-fast: false
  36. steps:
  37. - uses: actions/checkout@v5
  38. - uses: actions/setup-python@v6
  39. with:
  40. python-version: ${{ matrix.python-version }}
  41. # with pipenv v2023.6.26:
  42. # > $ pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)"
  43. # . --cov-report=term-missing --cov-fail-under=100
  44. # > cat: '*.egg-info/top_level.txt': No such file or directory
  45. # > [...]
  46. # > [...]/coverage/inorout.py:507: CoverageWarning:
  47. # . Module was never imported. (module-not-imported)
  48. - run: pip install --upgrade pipenv==2024.1.0
  49. # by default pipenv picks the latest version in PATH
  50. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  51. env:
  52. PYTHON_VERSION: ${{ matrix.python-version }}
  53. - run: pipenv graph
  54. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)"
  55. --cov-report=term-missing --cov-fail-under=100
  56. - run: pipenv run pylint "$(cat *.egg-info/top_level.txt)"
  57. # https://github.com/PyCQA/pylint/issues/352
  58. - run: pipenv run pylint tests/*
  59. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  60. check-links:
  61. runs-on: ubuntu-24.04
  62. strategy:
  63. matrix:
  64. python-version: ['3.13']
  65. steps:
  66. - uses: actions/checkout@v5
  67. - uses: actions/setup-python@v6
  68. with:
  69. python-version: ${{ matrix.python-version }}
  70. - run: pip install --upgrade pipenv==2025.0.4
  71. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  72. env:
  73. PYTHON_VERSION: ${{ matrix.python-version }}
  74. - run: pipenv graph
  75. # `--include '*.md'` fails for https://securipi.co.uk/cc1101.pdf (HTTP403).
  76. # `--include '*.py'` identifies `logging.INFO` as an url.
  77. - run: pipenv run blinkcheck --include CHANGELOG.md