1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 03:11:04 +00:00
supysonic/.github/workflows/tests.yaml
2020-11-22 15:17:05 +01:00

37 lines
859 B
YAML

# Inspired by python-package
name: Tests
on:
- push
- pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.5
- 3.6
- 3.7
- 3.8
fail-fast: false
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
if: ${{ !cancelled() }}