python.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 --python "$PYTHON_VERSION" --deploy --dev
  26. env:
  27. PYTHON_VERSION: ${{ matrix.python-version }}
  28. - run: pipenv graph
  29. - run: pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
  30. - run: pipenv run pylint --load-plugins=pylint_import_requirements ical2vdir
  31. # https://github.com/PyCQA/pylint/issues/352
  32. # disable parse-error due to:
  33. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  34. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  35. - run: pipenv run pylint --disable=parse-error tests/*
  36. - run: pipenv run mypy ical2vdir tests
  37. # >=1.9.0 to detect branch name
  38. # https://github.com/coveralls-clients/coveralls-python/pull/207
  39. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  40. # 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
  41. - run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
  42. # https://github.com/coverallsapp/github-action/issues/30
  43. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  44. - run: coveralls
  45. env:
  46. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}