Skip to content

Fixed the way to handle user_tags and item_tags #60

Fixed the way to handle user_tags and item_tags

Fixed the way to handle user_tags and item_tags #60

Workflow file for this run

name: Run CI
on:
push:
branches: [ "main" ]
pull_request:
branches:
- "*"
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Print the installed version
run: echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests/