Skip to content

feat(docs): deep code analysis engine with 5 supporting modules #14

feat(docs): deep code analysis engine with 5 supporting modules

feat(docs): deep code analysis engine with 5 supporting modules #14

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package + dev deps
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Ruff
run: python -m ruff check src tests
- name: Pytest
run: python -m pytest tests/ -q