We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b879cf commit 5ad7381Copy full SHA for 5ad7381
Makefile
@@ -1,14 +1,19 @@
1
-.PHONY: pr install lint type-check test integration-test proto-check clean help
+.PHONY: pr install lint type-check test integration-test clean generate help
2
3
# Run all PR checks locally
4
-pr: install proto-check lint type-check test integration-test
+pr: install generate lint type-check test integration-test
5
@echo "All PR checks passed!"
6
7
# Install dependencies
8
install:
9
@echo "Installing dependencies..."
10
uv sync --extra dev
11
12
+# Generate idl files
13
+generate:
14
+ @echo "Generating type files based on IDL..."
15
+ uv run python scripts/generate_proto.py
16
+
17
# Run linter
18
lint:
19
@echo "Running Ruff linter and fixing lint issues..."
0 commit comments