Skip to content

Update to v3 serialization #5

Update to v3 serialization

Update to v3 serialization #5

Workflow file for this run

name: CI (pip)
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Python Lint
run: |
pip install ruff>=0.2.1
ruff check .
ruff format --check .
build:
strategy:
matrix:
python-version: ["3.11"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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 -r requirements_dev.txt
- name: Install from source (required for the pre-commit tests)
run: pip install .
- name: Test with pytest
run: pytest --cov=./ --cov-report=xml tests/test_serialization.py