Skip to content

Update usage guidelines for web_search tool in bug and feature analys… #564

Update usage guidelines for web_search tool in bug and feature analys…

Update usage guidelines for web_search tool in bug and feature analys… #564

Workflow file for this run

name: ruff check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run ruff check
run: ruff check
- name: Run ruff format
run: ruff format --check