python.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
  2. # shown in badge
  3. # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/configuring-a-workflow#adding-a-workflow-status-badge-to-your-repository
  4. name: tests
  5. on:
  6. push:
  7. pull_request:
  8. schedule:
  9. - cron: '0 20 * * 5'
  10. jobs:
  11. code-format:
  12. runs-on: ubuntu-20.04
  13. strategy:
  14. matrix:
  15. python-version: ['3.9']
  16. steps:
  17. - uses: actions/checkout@v3
  18. - uses: actions/setup-python@v4
  19. with:
  20. python-version: ${{ matrix.python-version }}
  21. - run: pip install --upgrade pipenv==2020.8.13
  22. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  23. env:
  24. PYTHON_VERSION: ${{ matrix.python-version }}
  25. - run: pipenv graph
  26. - run: pipenv run black --check .
  27. tests:
  28. runs-on: ubuntu-20.04
  29. strategy:
  30. matrix:
  31. python-version:
  32. - '3.7'
  33. - '3.8'
  34. - '3.9'
  35. - '3.10'
  36. fail-fast: false
  37. steps:
  38. - uses: actions/checkout@v3
  39. - uses: actions/setup-python@v4
  40. with:
  41. python-version: ${{ matrix.python-version }}
  42. - run: pip install --upgrade pipenv==2020.8.13
  43. # by default pipenv picks the latest version in PATH
  44. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  45. env:
  46. PYTHON_VERSION: ${{ matrix.python-version }}
  47. - run: pipenv graph
  48. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  49. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  50. # https://github.com/PyCQA/pylint/issues/352
  51. - run: pipenv run pylint tests/*
  52. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests