Skip to content

feat: update llama.cpp to 5a69c9743 (#2277) #80

feat: update llama.cpp to 5a69c9743 (#2277)

feat: update llama.cpp to 5a69c9743 (#2277) #80

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Ruff
run: python -m pip install "ruff>=0.15.7"
- name: Lint with Ruff
run: python -m ruff check llama_cpp tests
- name: Check formatting with Ruff
run: python -m ruff format --check llama_cpp tests