python.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. tests:
  13. runs-on: ubuntu-20.04
  14. strategy:
  15. matrix:
  16. python-version:
  17. - '3.6'
  18. - '3.7'
  19. - '3.8'
  20. fail-fast: false
  21. steps:
  22. - uses: actions/checkout@v2.4.0
  23. - uses: actions/setup-python@v2.3.1
  24. with:
  25. python-version: ${{ matrix.python-version }}
  26. - run: pip install --upgrade pipenv==2020.8.13
  27. # by default pipenv picks the latest version in PATH
  28. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  29. env:
  30. PYTHON_VERSION: ${{ matrix.python-version }}
  31. - run: pipenv graph
  32. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  33. - run: pipenv run pylint "$(cat *.egg-info/top_level.txt)"
  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. # >=2.1.0 to support GITHUB_TOKEN
  40. # COVERALLS_REPO_TOKEN required manual configuration of secret
  41. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  42. - run: pip install 'coveralls>=2.1.0,<4'
  43. - run: coveralls
  44. env:
  45. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  46. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  47. COVERALLS_SERVICE_NAME: github