Skip to content

Commit

Permalink
Merge branch 'main' into fix-walk-acceleration
Browse files Browse the repository at this point in the history
  • Loading branch information
schluis authored Jan 16, 2025
2 parents 546c7ab + 4b53476 commit da3525f
Show file tree
Hide file tree
Showing 184 changed files with 8,211 additions and 3,984 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
build:
name: Build and Push CI Image
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,22 @@ jobs:
run: |
cargo fmt --check
format-toml:
name: Format TOML files
runs-on:
- self-hosted
- v3
container:
image: ghcr.io/hulks/hulk-ci:1.81.0
options: --user=1000:1000
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Check
run: |
taplo fmt --check --diff
test:
name: Test
runs-on:
Expand Down
44 changes: 44 additions & 0 deletions .taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[formatting]

[[rule]]
include = ["**/Cargo.toml"]
keys = ["workspace.dependencies", "dependencies", "*-dependencies"]

[rule.formatting]
reorder_keys = true

[[rule]]
include = ["**/Cargo.toml"]
keys = ["workspace"]

[rule.formatting]
reorder_arrays = true

[[rule]]
include = ["**/pyproject.toml"]
keys = ["tool.uv"]

[rule.formatting]
array_auto_collapse = false
reorder_arrays = true

[[rule]]
include = ["**/pyproject.toml"]
keys = ["tool.uv.sources"]

[rule.formatting]
reorder_keys = true

[[rule]]
include = ["**/pyproject.toml"]
keys = ["project"]

[rule.formatting]
reorder_arrays = true

[[rule]]
include = ["**/Cargo.toml"]
keys = ["workspace"]

[rule.formatting]
array_auto_collapse = false
Loading

0 comments on commit da3525f

Please sign in to comment.