Skip to content

chore(deps): bump rich from 13.9.2 to 13.9.4 #63

chore(deps): bump rich from 13.9.2 to 13.9.4

chore(deps): bump rich from 13.9.2 to 13.9.4 #63

Workflow file for this run

name: CI Workflow
on:
push:
branches:
- '*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
version: "0.4.25"
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest test