Skip to content

Merge pull request #83 from xadrianzetx/bump-ver #150

Merge pull request #83 from xadrianzetx/bump-ver

Merge pull request #83 from xadrianzetx/bump-ver #150

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: unit-tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- 'ubuntu-latest'
- 'windows-latest'
- 'macos-latest'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
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 Python dependencies
run: |
pip install -U . .[test]
- name: Run tests
run: pytest -v