Skip to content

fix(deps): update dependency jsonpickle to v3.4.2 #224

fix(deps): update dependency jsonpickle to v3.4.2

fix(deps): update dependency jsonpickle to v3.4.2 #224

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build, test, lint
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.x"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install uv
uses: astral-sh/setup-uv@2e657c127d5b1635d5a8e3fa40e0ac50a5bf6992 # v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Build project
run: uv build
- name: Run tests
run: uv run pytest tests
- name: Run ruff checks
run: uv run ruff check --output-format=github .
- name: Running format
run: |
uv run ruff format --check .