Skip to content

backport: Solve issues with pickled schemas (#173) #564

backport: Solve issues with pickled schemas (#173)

backport: Solve issues with pickled schemas (#173) #564

Workflow file for this run

name: Code quality
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run code quality tests with tox
run: tox
env:
TOXENV: black,flake8,mypy,docs,manifest