python.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>=2018.10.9
  24. - run: sudo apt-get update
  25. # TODO exclude dbus-python from pipenv install
  26. - run: sudo apt-get install --yes --no-install-recommends libdbus-1-dev
  27. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  28. env:
  29. PYTHON_VERSION: ${{ matrix.python-version }}
  30. - run: pipenv graph
  31. - run: pipenv run black --check .
  32. tests:
  33. runs-on: ubuntu-18.04
  34. strategy:
  35. matrix:
  36. python-version:
  37. - 3.5
  38. - 3.6
  39. - 3.7
  40. - 3.8
  41. steps:
  42. - uses: actions/checkout@v1
  43. - uses: actions/setup-python@v1
  44. with:
  45. python-version: ${{ matrix.python-version }}
  46. - run: pip install --upgrade pipenv>=2018.10.9
  47. - run: sudo apt-get update
  48. - run: sudo apt-get install --yes --no-install-recommends libdbus-1-dev
  49. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  50. env:
  51. PYTHON_VERSION: ${{ matrix.python-version }}
  52. - run: pipenv graph
  53. - run: pipenv run pytest --cov=systemctl_mqtt --cov-report=term-missing --cov-fail-under=100
  54. - run: pipenv run pylint --load-plugins=pylint_import_requirements systemctl_mqtt
  55. # https://github.com/PyCQA/pylint/issues/352
  56. - run: pipenv run pylint tests/*
  57. - run: pipenv run mypy systemctl_mqtt tests
  58. # >=1.9.0 to detect branch name
  59. # https://github.com/coveralls-clients/coveralls-python/pull/207
  60. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  61. # 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
  62. - run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
  63. # https://github.com/coverallsapp/github-action/issues/30
  64. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  65. - run: coveralls
  66. env:
  67. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}