2020-11-21 16:33:38 +00:00
|
|
|
# Inspired by python-package
|
|
|
|
|
2020-11-22 14:17:05 +00:00
|
|
|
name: Tests
|
2020-11-21 16:33:38 +00:00
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version:
|
|
|
|
- 3.5
|
|
|
|
- 3.6
|
|
|
|
- 3.7
|
|
|
|
- 3.8
|
2020-11-22 14:17:05 +00:00
|
|
|
fail-fast: false
|
2020-11-21 16:33:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
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
|
|
|
|
pip install -r ci-requirements.txt
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
coverage run setup.py test
|
|
|
|
coverage run -a setup.py test --test-suite tests.with_net
|
|
|
|
- name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v1.0.15
|
2020-11-22 14:17:05 +00:00
|
|
|
if: ${{ !cancelled() }}
|