summaryrefslogtreecommitdiff
path: root/.github/workflows/python-tests.yml
blob: 482276648bc1a05240617a8bb31285d094bcd6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: python tests+artifacts+release

on:
  pull_request:
  push:
    branches: [master]

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        python_version: [ '2.7', '3.5', '3.6', '3.7', '3.8', 'pypy2', 'pypy3' ]
        os: [windows-latest, ubuntu-latest] #, macos-latest]
        exclude:
        - os: windows-latest
          python_version: "2.7"
        - os: windows-latest
          python_version: "pypy2"
    name: ${{ matrix.os }} - Python ${{ matrix.python_version }}
    steps:
      - uses: actions/checkout@v1
      - name: Setup python
        uses: actions/setup-python@v1
        with:
          python-version: ${{ matrix.python_version }}
          architecture: x64
      - run: pip install -e .[toml] pytest
      - run: pytest


  eggs:
    runs-on: ubuntu-latest

    needs: [build]
    name: Python ${{ matrix.python_version }} eggs
    strategy:
      matrix:
        python_version: ['2.7', '3.5', '3.6', '3.7', '3.8']
    steps:
    - uses: actions/checkout@v1
    - name: Set up Python
      uses: actions/setup-python@v1
      with:
        python-version: ${{ matrix.python_version }}
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install --upgrade wheel setuptools
    - name: Build package
      run: |
        python setup.py bdist_egg
    - uses: actions/upload-artifact@v2
      with:
        name: dist
        path: dist

  dist:
    runs-on: ubuntu-latest

    needs: [build]
    name: Python bdist/wheel
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-python@v1
      with:
        python-version: "3.8"
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install --upgrade wheel setuptools
    - name: Build package
      run: |
        python setup.py bdist_wheel sdist
    - uses: actions/upload-artifact@v2
      with:
        name: dist
        path: dist

  dist_upload:

    runs-on: ubuntu-latest
    if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'pypa/setuptools_scm'
    needs: [eggs, dist]
    steps:
    - uses: actions/download-artifact@v2
      with:
        name: dist
    - name: Publish package to PyPI
      uses: pypa/gh-action-pypi-publish@master
      with:
        user: __token__
        password: ${{ secrets.pypi_token }}