summaryrefslogtreecommitdiff
path: root/.github/workflows/tests.yml
blob: e0d7263688a63c1c0a7ab86c9c92a65432a15eba (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
name: Tests

# Run this workflow every time a new commit pushed to your repository
on: [push, pull_request]

jobs:
  no-extras:
    name: Tests Without Extras
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
        os: [ubuntu-latest]
        include:
          - {python-version: 3.9, os: windows-latest}
          - {python-version: 3.9, os: macos-latest}

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python-version }}

      - name: Install Dependencies
        run: |
          python -m pip install --upgrade pip
          python -m pip install tox tox-gh-actions codacy-coverage codecov

      - name: Run Tests
        run: tox