1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/.github/workflows/tests.yaml
2021-11-20 21:01:00 +01:00

39 lines
879 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
- 3.9
#- "3.10"
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 -m unittest
coverage run -a -m unittest tests.net.suite
- name: Upload coverage
uses: codecov/codecov-action@v1.0.15
if: ${{ !cancelled() }}