Skip to content

chore(deps): bump pypa/cibuildwheel from 3.3.1 to 3.4.1 #124

chore(deps): bump pypa/cibuildwheel from 3.3.1 to 3.4.1

chore(deps): bump pypa/cibuildwheel from 3.3.1 to 3.4.1 #124

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Install dependencies (with dev extras)
run: |
uv sync --extra dev
- name: Run linting
run: |
make lint
- name: Run tests
run: |
uv run pytest --cov=gakido --cov-report=term-missing --cov-fail-under=60