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

on: [push, pull_request]

jobs:
  macOS:
    runs-on: macos-latest
    
    strategy:
      fail-fast: false
      matrix:
        python-version: [2.7, 3.5, 3.6, 3.7, 3.8]

    steps:
      - name: Checkout Repository
        uses: actions/checkout@v1
      - name: Set Up Python 3.7 to run nox
        uses: actions/setup-python@v1
        with:
          python-version: 3.7
      - name: Set Up Python - ${{ matrix.python-version }}
        if: matrix.python_version != '3.7'
        uses: actions/setup-python@v1
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install Dependencies
        run: |
          python3.7 -m pip install --upgrade nox
      - name: Run Tests
        run: |
          nox -s test-${{ matrix.python-version }}
      - name: Upload Coverage
        uses: codecov/codecov-action@v1
        with:
          file: ./coverage.xml
          flags: unittests
          name: codecov-umbrella
          yml: ./codecov.yml
          fail_ci_if_error: true