Skip to content

chore: remove stale namespace-suture.agent.md #104

chore: remove stale namespace-suture.agent.md

chore: remove stale namespace-suture.agent.md #104

Workflow file for this run

# SPDX-FileCopyrightText: 2026 PythonWoods <dev@pythonwoods.dev>
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches:
- main
- 'release/**'
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'uv.lock'
- 'noxfile.py'
- '.github/workflows/ci.yml'
pull_request:
branches:
- main
- 'release/**'
paths:
- 'src/**'
- 'tests/**'
- 'pyproject.toml'
- 'uv.lock'
- 'noxfile.py'
- '.github/workflows/ci.yml'
permissions:
contents: read
jobs:
quality:
name: Quality Checks
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Cache .nox
uses: actions/cache@v5
with:
path: .nox/
key: ${{ runner.os }}-nox-${{ matrix.python-version }}-${{ hashFiles('uv.lock') }}
restore-keys: |
${{ runner.os }}-nox-${{ matrix.python-version }}-
- name: Run Quality Matrix
run: uvx nox -s tests lint format typecheck --python ${{ matrix.python-version }}
- name: Upload coverage
if: matrix.python-version == '3.13'
uses: codecov/codecov-action@v6
with:
files: ./coverage.xml
fail_ci_if_error: false
security:
name: Security
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Run pip-audit
run: uvx nox -s security
reuse:
name: REUSE Compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v6