Skip to content

feat: Introduce new rules for enhanced tool safety and scoring #2

feat: Introduce new rules for enhanced tool safety and scoring

feat: Introduce new rules for enhanced tool safety and scoring #2

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run tests
run: python -m pytest
- name: Lint
run: python -m ruff check .
- name: Type-check
run: python -m mypy