Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 53fb516

Browse files
committed
WIP
1 parent b1d8ea4 commit 53fb516

File tree

11 files changed

+867
-4
lines changed

11 files changed

+867
-4
lines changed

.github/workflows/rust.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: dtolnay/rust-toolchain@stable
12-
- run: ( cd build2cmake && cargo fmt --all -- --check )
12+
- name: Cargo fmt (abi-check)
13+
run: ( cd abi-check && cargo fmt --all -- --check )
14+
- name: Cargo fmt (build2cmake)
15+
run: ( cd build2cmake && cargo fmt --all -- --check )
1316

1417
clippy:
1518
name: Clippy
@@ -28,4 +31,7 @@ jobs:
2831
- uses: dtolnay/rust-toolchain@stable
2932
with:
3033
components: clippy
31-
- run: ( cd build2cmake && cargo clippy -- -D warnings )
34+
- name: Clippy (abi-check)
35+
run: ( cd abi-check && cargo clippy -- -D warnings )
36+
- name: Clippy (build2cmake)
37+
run: ( cd build2cmake && cargo clippy -- -D warnings )

0 commit comments

Comments
 (0)