mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-09 11:42:16 +00:00
39 lines
894 B
YAML
39 lines
894 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 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() }}
|