51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: Test package
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install -r requirements-test.txt
|
|
|
|
# # fails on python 2.7
|
|
# - name: Run tests
|
|
# run: |
|
|
# coverage run --append -m unittest
|
|
# coverage xml -o ./coverage.xml
|
|
|
|
- name: Run tests
|
|
run: |
|
|
coverage run --append --source=benedict setup.py test
|
|
coverage xml -o ./coverage.xml
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v2
|
|
with:
|
|
fail_ci_if_error: false
|
|
files: ./coverage.xml
|
|
flags: unittests
|
|
verbose: true
|