forked from vllm-project/speculators
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (31 loc) · 744 Bytes
/
Copy pathquality.yml
File metadata and controls
34 lines (31 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Quality
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality-checks:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.13"]
env:
UV_SYSTEM_PYTHON: 1
UV_TORCH_BACKEND: "cpu"
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv pip install .[dev]
- name: Run quality checks
run: make quality