Skip to content

chore(deps): bump pygments from 2.19.2 to 2.20.0 #216

chore(deps): bump pygments from 2.19.2 to 2.20.0

chore(deps): bump pygments from 2.19.2 to 2.20.0 #216

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.12", "3.13" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: "true"
cache-suffix: "${{ matrix.python-version }}"
cache-dependency-glob: 'uv.lock'
- name: Install Dependencies
run: uv sync --python "${{ matrix.python-version }}" --all-extras --dev
- name: Run tests
run: uv run --python "${{ matrix.python-version }}" pytest
- name: Cache Clear
run: uv cache prune --ci