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:
|
2021-12-04 14:51:54 +00:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- supysonic/**
|
|
|
|
- tests/**
|
|
|
|
- ci-requirements.txt
|
|
|
|
- pyproject.toml
|
|
|
|
- setup.cfg
|
|
|
|
- setup.py
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- supysonic/**
|
|
|
|
- tests/**
|
|
|
|
- ci-requirements.txt
|
|
|
|
- pyproject.toml
|
|
|
|
- setup.cfg
|
|
|
|
- setup.py
|
2020-11-21 16:33:38 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
2023-01-01 12:38:26 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-11-21 16:33:38 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version:
|
|
|
|
- 3.7
|
|
|
|
- 3.8
|
2020-11-25 20:24:59 +00:00
|
|
|
- 3.9
|
2022-01-30 15:37:09 +00:00
|
|
|
- "3.10"
|
2024-05-19 13:59:40 +00:00
|
|
|
- "3.11"
|
|
|
|
- "3.12"
|
2020-11-22 14:17:05 +00:00
|
|
|
fail-fast: false
|
2020-11-21 16:33:38 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-05-19 15:07:09 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-11-21 16:33:38 +00:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2024-05-19 15:07:09 +00:00
|
|
|
uses: actions/setup-python@v5
|
2020-11-21 16:33:38 +00:00
|
|
|
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
|
2024-05-19 15:07:09 +00:00
|
|
|
uses: codecov/codecov-action@v4
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
2020-11-22 14:17:05 +00:00
|
|
|
if: ${{ !cancelled() }}
|