Skip to content

BLD: update CI and build, remove poetry, test on py 310, 311, 312 #18

BLD: update CI and build, remove poetry, test on py 310, 311, 312

BLD: update CI and build, remove poetry, test on py 310, 311, 312 #18

Workflow file for this run

name: Build
on:
push:
branches:
- master
- workflow_test
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run checks
run: |
pre-commit run --all-files --show-diff-on-failure
pytest tests.py --hypothesis-show-statistics --verbose