Skip to content

build(docker): migrate to uv for deterministic builds and fix context #133

build(docker): migrate to uv for deterministic builds and fix context

build(docker): migrate to uv for deterministic builds and fix context #133

Workflow file for this run

name: Python Application CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: uv sync --frozen
- name: Lint with Ruff
run: uv run ruff check .
- name: Type check with mypy
run: uv run mypy .
- name: Test with pytest
run: uv run pytest