Skip to content

Adds a bunch of integration tests against Llama 3.2 1B. #40

Adds a bunch of integration tests against Llama 3.2 1B.

Adds a bunch of integration tests against Llama 3.2 1B. #40

Workflow file for this run

# .github/workflows/lint.yml
name: Lint
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Ruff
run: pip install ruff
- name: Run Ruff
run: ruff check --fix .