python.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 sync --dev
  26. # ModuleNotFoundError: No module named 'importlib_metadata'
  27. - run: if python3 -c 'import sys; sys.exit(sys.version_info < (3, 8))'; then
  28. pipenv graph;
  29. pipenv install --dev importlib-metadata;
  30. fi
  31. - run: pipenv graph
  32. - run: pipenv run pylint ical2vdir
  33. # https://github.com/PyCQA/pylint/issues/352
  34. # disable parse-error due to:
  35. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  36. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  37. - run: pipenv run pylint --disable=missing-requirement --disable=parse-error tests/*
  38. - run: pipenv run mypy ical2vdir tests
  39. - run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
  40. - run: pipenv run black --check .
  41. # >=1.9.0 to detect branch name
  42. # https://github.com/coveralls-clients/coveralls-python/pull/207
  43. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  44. - run: pip install 'coveralls>=1.9.0,<2'
  45. # https://github.com/coverallsapp/github-action/issues/30
  46. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  47. - run: coveralls
  48. env:
  49. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}