Fix build

This commit is contained in:
Jakub Roztocil 2019-12-02 20:57:21 +01:00
parent 0608b5869f
commit 6e2c31a5a9

View File

@ -9,7 +9,7 @@ jobs:
- uses: actions/setup-python@v1 - uses: actions/setup-python@v1
with: with:
python-version: 3.8 python-version: 3.8
- run: pip install --upgrade pip setuptools - run: pip install --upgrade pip
- run: make install - run: make install
- run: make pycodestyle - run: make pycodestyle
- run: make test - run: make test
@ -24,11 +24,14 @@ jobs:
matrix: matrix:
os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: [3.6, 3.7, 3.8] python-version: [3.6, 3.7, 3.8]
exclude:
- os: windows-latest
python-version: 3.8
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- uses: actions/setup-python@v1 - uses: actions/setup-python@v1
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools - run: python -m pip install --upgrade pip
- run: pip install --upgrade --editable . - run: pip install --upgrade --editable .
- run: python setup.py test - run: python setup.py test