python.yml 2.8 KB

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