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.6
|
|
|
|
- 3.7
|
|
|
|
- 3.8
|
2020-11-25 20:24:59 +00:00
|
|
|
- 3.9
|
2021-11-20 20:01:00 +00:00
|
|
|
#- "3.10"
|
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: |
|
2021-11-20 20:01:00 +00:00
|
|
|
coverage run -m unittest
|
|
|
|
coverage run -a -m unittest tests.net.suite
|
2020-11-21 16:33:38 +00:00
|
|
|
- name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v1.0.15
|
2020-11-22 14:17:05 +00:00
|
|
|
if: ${{ !cancelled() }}
|