Skip to content

chore: align dual-stack transport contract, deploy input model, and CI baseline #9

chore: align dual-stack transport contract, deploy input model, and CI baseline

chore: align dual-stack transport contract, deploy input model, and CI baseline #9

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
quality-gate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Sync Dependencies
run: uv sync --all-extras --frozen
- name: Run pre-commit
run: uv run pre-commit run --all-files
- name: Run pytest
run: uv run pytest