Fixed devcontainer and build in git workflow#1
Merged
eelcovv merged 8 commits intoeelcovv:mainfrom Oct 3, 2025
Merged
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR tightens up the devcontainer setup with stricter scripting and proper uv installation, restores a standalone Prettier hook for CI (bumping hook versions), adds tox to Python dev dependencies, and cleans up obsolete lock/config files. Class diagram for updated pre-commit hook configurationclassDiagram
class "pre-commit-config.yaml" {
+repos: list
}
class "pre-commit/pre-commit-hooks" {
+rev: v6.0.0
+hooks: check-case-conflict, check-merge-conflict, check-yaml, end-of-file-fixer, trailing-whitespace, ruff-format
}
class "JoC0de/pre-commit-prettier" {
+rev: v3.6.2
+hook: prettier
+args: ["--write"]
+types_or: [javascript, jsx, ts, tsx, json, markdown, yaml, css, scss, html]
}
"pre-commit-config.yaml" --> "pre-commit/pre-commit-hooks"
"pre-commit-config.yaml" --> "JoC0de/pre-commit-prettier"
Class diagram for updated Python dev dependenciesclassDiagram
class "pyproject.toml" {
+dev: [codecov, setuptools, cython, tox]
}
class "tox" {
+version: ">=4.30.3"
}
"pyproject.toml" --> "tox"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Owner
Author
|
fix coverage token |
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.
We were running prettier locally, but this does not work in de github actions. therefore moved back to the prettier hook and updated the devcontainer
Summary by Sourcery
Standardize the development container and CI workflows by enhancing the devcontainer setup, migrating the Prettier hook back into pre-commit, updating dependencies, and removing outdated files.
Enhancements:
CI:
Chores: