Skip to content

Bump version 0.2.1 → 0.2.2 #41

Bump version 0.2.1 → 0.2.2

Bump version 0.2.1 → 0.2.2 #41

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
concurrency:
group: unit-test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install --upgrade pip
pip install --use-pep517 -e '.[host,tests]'
pip list
- name: Run tests
run: pytest -vv --cov --cov-report=xml
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
verbose: true