python.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # shown in badge
  2. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  3. name: tests
  4. on:
  5. push:
  6. pull_request:
  7. schedule:
  8. - cron: '0 20 * * 5'
  9. jobs:
  10. build:
  11. runs-on: ubuntu-18.04
  12. strategy:
  13. matrix:
  14. python-version:
  15. - 3.5
  16. - 3.6
  17. - 3.7
  18. - 3.8
  19. steps:
  20. - uses: actions/checkout@v1
  21. - uses: actions/setup-python@v1
  22. with:
  23. python-version: ${{ matrix.python-version }}
  24. - run: pip install --upgrade pipenv>=2018.10.9
  25. - run: pipenv install --deploy --dev
  26. # ModuleNotFoundError: No module named 'importlib_metadata'
  27. # https://github.com/WanzenBug/pylint-import-requirements/issues/17
  28. - run: if python3 -c 'import sys; sys.exit(sys.version_info < (3, 8))'; then
  29. pipenv graph;
  30. pipenv install --dev importlib-metadata;
  31. fi
  32. - run: pipenv graph
  33. - run: pipenv run pylint --load-plugins=pylint_import_requirements ical2vdir
  34. # https://github.com/PyCQA/pylint/issues/352
  35. # disable parse-error due to:
  36. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  37. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  38. - run: pipenv run pylint --disable=parse-error tests/*
  39. - run: pipenv run mypy ical2vdir tests
  40. - run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
  41. - run: pipenv run black --check .
  42. # >=1.9.0 to detect branch name
  43. # https://github.com/coveralls-clients/coveralls-python/pull/207
  44. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  45. # 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
  46. - run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
  47. # https://github.com/coverallsapp/github-action/issues/30
  48. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  49. - run: coveralls
  50. env:
  51. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}