Skip to content

Update ONNX dependencies to include onnxscript and bump version to 0.… #2

Update ONNX dependencies to include onnxscript and bump version to 0.…

Update ONNX dependencies to include onnxscript and bump version to 0.… #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # full history for hatch-vcs
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --dev
- name: Lint
run: uv run ruff check src/ tests/
- name: Test
run: uv run pytest tests/ -v --tb=short