python.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
  2. # shown in badge
  3. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  4. name: tests
  5. on:
  6. push:
  7. pull_request:
  8. schedule:
  9. - cron: '0 20 * * 5'
  10. jobs:
  11. code-format:
  12. runs-on: ubuntu-18.04
  13. strategy:
  14. matrix:
  15. python-version:
  16. - 3.8
  17. steps:
  18. - uses: actions/checkout@v1
  19. - uses: actions/setup-python@v1
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv>=2018.10.9
  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-18.04
  30. strategy:
  31. matrix:
  32. python-version:
  33. - 3.5
  34. - 3.6
  35. - 3.7
  36. - 3.8
  37. fail-fast: false
  38. steps:
  39. - uses: actions/checkout@v1
  40. - uses: actions/setup-python@v1
  41. with:
  42. python-version: ${{ matrix.python-version }}
  43. - run: pip install --upgrade pipenv>=2018.10.9
  44. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  45. env:
  46. PYTHON_VERSION: ${{ matrix.python-version }}
  47. - run: pipenv graph
  48. - run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
  49. - run: pipenv run pylint --load-plugins=pylint_import_requirements ical2vdir
  50. # https://github.com/PyCQA/pylint/issues/352
  51. # disable parse-error due to:
  52. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  53. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  54. - run: pipenv run pylint --disable=parse-error tests/*
  55. - run: pipenv run mypy ical2vdir tests
  56. # >=1.9.0 to detect branch name
  57. # https://github.com/coveralls-clients/coveralls-python/pull/207
  58. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  59. # 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
  60. - run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
  61. # https://github.com/coverallsapp/github-action/issues/30
  62. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  63. - run: coveralls
  64. env:
  65. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}