aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 0f63125c85832673c4e4f6fc267d12aa05ab81dc (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
name: build

on:
- push
- pull_request

jobs:
  build:
    runs-on: ${{ matrix.os }}

    strategy:
      matrix:
        os:
        - ubuntu-latest
        - macos-latest
        python-version:
        - 3.5
        - 3.6
        - 3.7
        - 3.8

    steps:
      - uses: actions/checkout@v2

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

      - run: pip install -U pip setuptools wheel mock nose pytest
      - run: python setup.py release