Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
| sync: | ||
| desc: "Install dependencies" | ||
| cmds: | ||
| - uv sync |
There was a problem hiding this comment.
[P1] Install dev dependencies before lint/test
The sync task only runs uv sync, which installs the default dependency set. The tools invoked in the subsequent lint and test tasks (ruff, pytest, coverage) live in the [dependency-groups].dev section of pyproject.toml, so they are skipped when uv sync is called without --group dev or --all-groups. In CI this means the workflow will fail with ModuleNotFoundError as soon as linting or tests run. Please install the dev group (e.g. uv sync --group dev) or otherwise ensure these packages are present before executing lint/test steps.
Useful? React with 👍 / 👎.
Implementation of GitHub workflow for continuous integration