python.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. code-format:
  13. runs-on: ubuntu-20.04
  14. strategy:
  15. matrix:
  16. python-verison: ['3.9']
  17. steps:
  18. - uses: actions/checkout@v2.4.0
  19. - uses: actions/setup-python@v2.3.1
  20. with:
  21. python-version: ${{ matrix.python-version }}
  22. - run: pip install --upgrade pipenv==2020.8.13
  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-20.04
  30. strategy:
  31. matrix:
  32. python-version:
  33. - '3.6'
  34. - '3.7'
  35. - '3.8'
  36. - '3.9'
  37. - '3.10'
  38. fail-fast: false
  39. steps:
  40. - uses: actions/checkout@v2.4.0
  41. - uses: actions/setup-python@v2.3.1
  42. with:
  43. python-version: ${{ matrix.python-version }}
  44. - run: pip install --upgrade pipenv==2020.8.13
  45. # by default pipenv picks the latest version in PATH
  46. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  47. env:
  48. PYTHON_VERSION: ${{ matrix.python-version }}
  49. - run: pipenv graph
  50. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=63
  51. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  52. # https://github.com/PyCQA/pylint/issues/352
  53. - run: pipenv run pylint tests/*
  54. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests