Skip to content

add bulk review evals python script.py #29

add bulk review evals python script.py

add bulk review evals python script.py #29

Workflow file for this run

name: Lint Code
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black ruff
- name: Run Black
run: black --check .
- name: Run Ruff
run: ruff .