chore: add Makefile, dev tooling, and GitHub Actions CI - #65
Merged
Conversation
Sbourgeat
approved these changes
Jul 20, 2026
Comment on lines
+2
to
+18
|
|
||
| help: | ||
| @echo "Available targets:" | ||
| @echo " install-uv Install uv (if not already present)" | ||
| @echo " install-dev Install development dependencies" | ||
| @echo " install Install production dependencies" | ||
| @echo " lint Run ruff check and format diff" | ||
| @echo " lint-fix Run ruff check --fix and apply formatting" | ||
| @echo " test Run unit tests with coverage" | ||
| @echo " clean Remove test/coverage artifacts" | ||
|
|
||
| install-uv: | ||
| curl -LsSf https://astral.sh/uv/0.11.28/install.sh | sh | ||
|
|
||
| install-dev: install-uv | ||
| uv sync | ||
| uv run pre-commit install |
Collaborator
There was a problem hiding this comment.
Praise: flowless 0 tests ran 🔥
☂️ Code Coverage
Overall Coverage
New FilesNo new covered files... Modified Files
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
install,lint,lint-fix,test,clean,helptargetsapp/)tests/scaffoldingWhy
The repo had no automated dev workflow. This sets a consistent baseline for style, testing, and CI from the first commit.
Fixes
langfuse==4.6→4.14.1(4.6 was never published; blockeduv sync)graphes-clientgit dependency andapp/package layout (both blockeduv sync)ruff formatnow uses--checkso CI fails on unformatted codeVerification
uv sync,make lint,make testpass locallychore/dev-tooling