Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
- python-uv
- react
- rust
- scala
- typescript
- zig-js
- zig
Expand Down
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
# .idea/
.idea/

# Abstra
# Abstra is an AI-powered process automation framework.
Expand Down Expand Up @@ -245,7 +245,9 @@ rustc-ice-*.txt
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/
.vscode/
.metals/

# Claude Slop
.claude/scheduled_tasks.lock
Expand Down
2 changes: 2 additions & 0 deletions crates/hm-dsl-engine/harmont-py/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ dist/
*.egg-info/
.coverage
htmlcov/
.vscode/
git
2 changes: 2 additions & 0 deletions crates/hm-dsl-engine/harmont-py/harmont/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
from ._target import clear_target_cache, target # noqa: F401 clear_target_cache used by tests
from ._toolchain import apt_base
from ._typing import BaseImage, Target
from ._scala import scala
from ._zig import zig
from .cache import (
CacheCompose,
Expand Down Expand Up @@ -329,6 +330,7 @@ def group(steps: list[Step] | tuple[Step, ...]) -> tuple[Step, ...]:
"py",
"python",
"rust",
"scala",
"scratch",
"sh",
"target",
Expand Down
Loading
Loading