pythonpackage.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. name: Python package
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ${{ matrix.os }}
  6. strategy:
  7. matrix:
  8. os: [ubuntu-latest, macos-latest, windows-latest]
  9. python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
  10. exclude:
  11. # sqlite3 exit handling seems to get in the way
  12. - os: macos-latest
  13. python-version: pypy3
  14. # doesn't support passing in bytestrings to os.scandir
  15. - os: windows-latest
  16. python-version: pypy3
  17. # path encoding
  18. - os: windows-latest
  19. python-version: 3.5
  20. # path encoding
  21. - os: macos-latest
  22. python-version: 3.5
  23. fail-fast: false
  24. steps:
  25. - uses: actions/checkout@v2
  26. - name: Set up Python ${{ matrix.python-version }}
  27. uses: actions/setup-python@v2
  28. with:
  29. python-version: ${{ matrix.python-version }}
  30. - name: Install native dependencies (Ubuntu)
  31. run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
  32. if: "matrix.os == 'ubuntu-latest'"
  33. - name: Install native dependencies (MacOS)
  34. run: brew install swig gpgme
  35. if: "matrix.os == 'macos-latest'"
  36. - name: Install dependencies
  37. run: |
  38. python -m pip install --upgrade pip
  39. pip install -U pip coverage codecov flake8 fastimport
  40. - name: Install gpg on supported platforms
  41. run: pip install -U gpg
  42. if: "matrix.os != 'windows-latest' && matrix.python-version != 'pypy3'"
  43. - name: Install mypy
  44. run: |
  45. pip install -U mypy
  46. if: "matrix.python-version != 'pypy3'"
  47. - name: Style checks
  48. run: |
  49. python -m flake8
  50. - name: Typing checks
  51. run: |
  52. python -m mypy dulwich
  53. if: "matrix.python-version != 'pypy3'"
  54. - name: Build
  55. run: |
  56. python setup.py build_ext -i
  57. - name: Coverage test suite run
  58. run: |
  59. python -m coverage run -p -m unittest dulwich.tests.test_suite
  60. - name: Upload coverage details
  61. run: |
  62. codecov