Skip to content
Closed
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
13 changes: 13 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,18 @@ jobs:
cargo clippy --features testnet
cargo clippy --features mainnet

check-cargo-semver:
executor: rust-node
steps:
- checkout
- cargo_fetch:
working_directory: wasm
- run:
working_directory: wasm
command: |
cargo install [email protected] --locked
cargo semver-checks --workspace --features testnet

check-fmt:
executor: rust-node
steps:
Expand All @@ -170,6 +182,7 @@ workflows:
main-workflow:
jobs:
- check-fmt
- check-cargo-semver
- check-clippy
- sdk
- sdk-test:
Expand Down
Loading