-
Notifications
You must be signed in to change notification settings - Fork 3
32 lines (30 loc) · 904 Bytes
/
Copy pathcheck.yml
File metadata and controls
32 lines (30 loc) · 904 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
name: Check
on:
pull_request:
push:
branches: [main, master]
jobs:
check:
permissions:
contents: read
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
# NOTE: python/node/uv versions must stay in sync with _build.yml
- uses: actions/setup-python@v6
with:
python-version: '3.13'
- uses: astral-sh/setup-uv@v8.1.0
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: uv sync
- name: Format & schema
run: pnpm check
- name: Lint & typecheck
run: pnpm check:py:fast
- name: Tests
run: pnpm test:py