Skip to content

Commit 8565eab

Browse files
Sync contents
1 parent ef9a667 commit 8565eab

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

.github/workflows/pre-commit.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: pre-commit
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: pre-commit
17+
uses: pre-commit/action@v3.0.1

.github/workflows/pyright.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: pyright
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
8+
jobs:
9+
type-check:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: checkout
14+
uses: actions/checkout@v4
15+
16+
- name: install-uv
17+
uses: astral-sh/setup-uv@v6
18+
with:
19+
enable-cache: true
20+
21+
- name: venv
22+
run: uv venv && uv sync --extra dev --extra vector-search --extra wandb
23+
24+
- name: pyright
25+
run: uv run pyright

.sync_state

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"last_synced_sha": "1a1d8cdaaf58b3b5f3a65803016582e207ceeabb",
3-
"last_sync_time": "2025-10-01T17:20:56.564346"
2+
"last_synced_sha": "4b06e6c148a26b79f48bd50e58aa54b21ef46ada",
3+
"last_sync_time": "2025-10-01T22:03:45.401192"
44
}

0 commit comments

Comments
 (0)