Skip to content

feat: Update README.md with detailed graph shape and routing summary … #18

feat: Update README.md with detailed graph shape and routing summary …

feat: Update README.md with detailed graph shape and routing summary … #18

Workflow file for this run

name: CI
on:
push:
branches: [main, first-design]
pull_request:
branches: [main]
jobs:
secret-scan:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Scan the repository and git history for committed secrets.
- name: Run gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v