Skip to content

Bump black from 26.1.0 to 26.3.1 in the uv group across 1 directory #15

Bump black from 26.1.0 to 26.3.1 in the uv group across 1 directory

Bump black from 26.1.0 to 26.3.1 in the uv group across 1 directory #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-type:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv sync --group dev --extra tui --frozen
- run: uv run ruff check anki_cli
- run: uv run ty check anki_cli
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv sync --group dev --frozen
- run: uv run pytest