Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

fix pyproject.toml

fix pyproject.toml #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --all-groups
- name: Lint (ruff)
run: uv run ruff check .
- name: Format check (ruff)
run: uv run ruff format --check .
- name: Type check (mypy)
run: uv run mypy steamlayer --explicit-package-bases --ignore-missing-imports
- name: Test (pytest)
run: uv run pytest