Skip to content

Closes #4, closes #5. Patch version bump. #23

Closes #4, closes #5. Patch version bump.

Closes #4, closes #5. Patch version bump. #23

Workflow file for this run

name: Run tests
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
env:
MACOSX_DEPLOYMENT_TARGET: 10.15
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-13, windows-2022]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Installing platform dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Installing python dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.'
pip install pytest
- name: Running tests
run: |
pytest