Skip to content

Bump version: 0.13.1 → 0.14.0 #22

Bump version: 0.13.1 → 0.14.0

Bump version: 0.13.1 → 0.14.0 #22

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ "3.8", "3.12" ]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
defaults:
run:
shell: bash
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- name: Acquire sources
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: 'pip'
cache-dependency-path: 'setup.py'
- name: Run linters
run: |
make lint
- name: Run tests, with coverage
run: |
make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true