Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
restore-keys: |
${{ runner.os }}-cargo-

- name: Check format
run: cargo fmt --all -- --check
- name: Check format (workspace crates)
run: cargo fmt --package callora-vault --package callora-settlement --package callora-revenue-pool -- --check

- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ The project enforces a **minimum of 95% line coverage** on every push via GitHub
```
callora-contracts/
├── .github/workflows/
│ ├── ci.yml # CI: fmt, clippy, test, WASM build
│ ├── ci.yml # CI: workspace fmt gate, clippy, test, WASM build
│ └── coverage.yml # CI: enforces 95% coverage on every push
├── contracts/
│ ├── vault/ # Primary storage and metering
Expand Down
Loading