summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 6471b9b70bbfa96359b74f784abd2055fce0d447 (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
name: CI

on:
  push:
    branches:
      - develop
      - master
      - ci/gh-actions
  pull_request:

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        versions:
          - python: 3.5
            toxenv: py35-1.11.X
          - python: 3.6
            toxenv: py36-1.11.X
          - python: 3.7
            toxenv: py37-1.11.X
          - python: 3.8
            toxenv: py38-1.11.X
          - python: 3.5
            toxenv: py35-2.2.X
          - python: 3.6
            toxenv: py36-2.2.X
          - python: 3.7
            toxenv: py37-2.2.X
          - python: 3.8
            toxenv: py38-2.2.X
          - python: 3.6
            toxenv: py36-3.0.X
          - python: 3.7
            toxenv: py37-3.0.X
          - python: 3.8
            toxenv: py38-3.0.X

    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.versions.python }}
      - run: |
          pip install tox
          python setup.py install_egg_info
      - run: tox -e ${{ matrix.versions.toxenv }}
      - uses: codecov/codecov-action@v1.3.2