python.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.5
  35. - 3.6
  36. - 3.7
  37. fail-fast: false
  38. steps:
  39. - uses: actions/checkout@v1
  40. - uses: actions/setup-python@v1
  41. with:
  42. python-version: ${{ matrix.python-version }}
  43. # test_read_triangular_locale & test_write_triangular_same_locale
  44. - run: sudo locale-gen de_AT.utf8
  45. - run: pip install --upgrade pipenv==2020.8.13
  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=freesurfer_surface --cov-report=term-missing --cov-fail-under=100
  51. - run: pipenv run pylint --load-plugins=pylint_import_requirements freesurfer_surface
  52. # https://github.com/PyCQA/pylint/issues/352
  53. - run: pipenv run pylint tests/*
  54. - run: pipenv run mypy freesurfer_surface tests
  55. # >=1.9.0 to detect branch name
  56. # https://github.com/coveralls-clients/coveralls-python/pull/207
  57. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-547036866
  58. # 1.11.0 https://github.com/coveralls-clients/coveralls-python/issues/219
  59. - run: pip install 'coveralls>=1.9.0,<2,!=1.11.0'
  60. # https://github.com/coverallsapp/github-action/issues/30
  61. # https://github.com/coverallsapp/github-action/issues/4#issuecomment-529399410
  62. - run: coveralls
  63. env:
  64. COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
  65. test-examples:
  66. runs-on: ubuntu-18.04
  67. strategy:
  68. matrix:
  69. python-version:
  70. - 3.5
  71. - 3.6
  72. - 3.7
  73. fail-fast: false
  74. defaults:
  75. run:
  76. working-directory: examples/
  77. steps:
  78. - uses: actions/checkout@v1
  79. - uses: actions/setup-python@v1
  80. with:
  81. python-version: ${{ matrix.python-version }}
  82. - run: pip install --upgrade pipenv==2020.8.13
  83. - run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
  84. env:
  85. PYTHON_VERSION: ${{ matrix.python-version }}
  86. - run: pipenv graph
  87. # > the default behaviour is to abort conversion [...] if one of the cells throws an error
  88. - run: pipenv run jupyter nbconvert --execute --inplace *.ipynb
  89. - run: git diff