Files
gitea-mirror/.github/workflows/ci.yml
T
alex fd88aabe46
Test and coverage / build (push) Failing after 4m23s
feat: Upgrade to uv and Python 3.12
2026-06-27 22:34:50 +03:00

24 lines
574 B
YAML

name: Test and coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync --frozen
- name: Run tests and collect coverage
run: make coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2