python.yml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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.7'
  34. - '3.8'
  35. - '3.9'
  36. pandas-version:
  37. - '' # locked version
  38. - 0.23.*
  39. - 0.24.*
  40. - 0.25.*
  41. - 1.1.* # pandas.io.common.get_handle does not yet support urls
  42. - 1.*
  43. exclude:
  44. # no python-version3.8 wheels for pandas v0.24.2 & v0.23.4 available
  45. # https://travis-ci.org/github/fphammerle/freesurfer-stats/builds/701952350
  46. # build takes longer than 10min
  47. # https://travis-ci.org/github/fphammerle/freesurfer-stats/jobs/702077404#L199
  48. - python-version: '3.8'
  49. pandas-version: 0.23.*
  50. - python-version: '3.8'
  51. pandas-version: 0.24.*
  52. - python-version: '3.9'
  53. pandas-version: 0.23.*
  54. - python-version: '3.9'
  55. pandas-version: 0.24.*
  56. - python-version: '3.9'
  57. pandas-version: 0.25.* # no wheel available
  58. fail-fast: false
  59. steps:
  60. - uses: actions/checkout@v2.4.0
  61. - uses: actions/setup-python@v2.3.1
  62. with:
  63. python-version: ${{ matrix.python-version }}
  64. - run: pip install --upgrade pipenv==2020.8.13
  65. # by default pipenv picks the latest version in PATH
  66. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  67. env:
  68. PYTHON_VERSION: ${{ matrix.python-version }}
  69. # `pipenv install --selective-upgrade "pandas==$PANDAS_VERSION"` was not effective
  70. - run: '[ -z "$PANDAS_VERSION" ] || pipenv run pip install "pandas==$PANDAS_VERSION"'
  71. env:
  72. PANDAS_VERSION: ${{ matrix.pandas-version }}
  73. - run: pipenv graph
  74. - run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
  75. - run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
  76. # https://github.com/PyCQA/pylint/issues/352
  77. # disable parse-error due to:
  78. # > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
  79. # > [Errno 2] No such file or directory: 'tests/resources/__init__.py' (parse-error)
  80. - run: pipenv run pylint --disable=parse-error tests/*
  81. - run: pipenv run mypy "$(cat *.egg-info/top_level.txt)" tests
  82. # >=2.1.0 to support GITHUB_TOKEN
  83. # COVERALLS_REPO_TOKEN required manual configuration of secret
  84. # https://github.com/TheKevJames/coveralls-python/commit/f597109b62fadaf900af79d4f08a7debee5229e2
  85. - run: pip install 'coveralls>=2.1.0,<4'
  86. - run: coveralls
  87. env:
  88. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  89. # https://github.com/TheKevJames/coveralls-python/issues/240#issuecomment-758336355
  90. COVERALLS_SERVICE_NAME: github