Skip to content

Sovereign pool: qwen-flash to qwen3-max #73

Sovereign pool: qwen-flash to qwen3-max

Sovereign pool: qwen-flash to qwen3-max #73

Workflow file for this run

name: Lint
on:
push:
branches: ["main", "spider-dev", "helix-dev"]
pull_request:
branches: ["main"]
jobs:
lint:
name: ruff + black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install linters
run: pip install ruff black
- name: ruff check
run: ruff check src/ tests/ foundry/
- name: black check
run: black --check src/ tests/ foundry/