python.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-18.04
  14. strategy:
  15. matrix:
  16. python-version:
  17. - 3.8
  18. steps:
  19. - uses: actions/checkout@v1
  20. - uses: actions/setup-python@v1
  21. with:
  22. python-version: ${{ matrix.python-version }}
  23. - run: pip install --upgrade pipenv==2020.8.13
  24. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  25. env:
  26. PYTHON_VERSION: ${{ matrix.python-version }}
  27. - run: pipenv graph
  28. - run: pipenv run black --check .
  29. tests:
  30. runs-on: ubuntu-18.04
  31. strategy:
  32. matrix:
  33. python-version:
  34. # 3.4 not available
  35. - 3.5
  36. - 3.6
  37. - 3.7
  38. - 3.8
  39. steps:
  40. - uses: actions/checkout@v1
  41. - uses: actions/setup-python@v1
  42. with:
  43. python-version: ${{ matrix.python-version }}
  44. - run: pip install --upgrade pipenv==2020.8.13
  45. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  46. env:
  47. PYTHON_VERSION: ${{ matrix.python-version }}
  48. - run: if python3 -c 'import sys; sys.exit(sys.version_info < (3, 8))'; then
  49. pipenv install 'astroid>=2.3.0';
  50. fi
  51. - run: pipenv graph
  52. - run: pipenv run pytest --cov=free_disk --cov-report=term-missing
  53. - run: pipenv run pylint free_disk
  54. - run: pipenv run pylint --disable=missing-requirement tests/*
  55. - run: pipenv run mypy free_disk tests