Skip to content

Inc version

Inc version #38

Workflow file for this run

name: Build and test
on: push
jobs:
build:
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
name: Build and run tests
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python_version }}"
- name: Instal dependency and test environment
run: |
python -m pip install -U pip setuptools
pip install msgspec pydantic pytest
python setup.py build install
- name: Run tests
run: pytest tests