Skip to content

Commit

Permalink
Add 'cargo build' to config.yml; test with 'cargo test'
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Dec 19, 2024
1 parent 6aac963 commit 59b1b3c
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
command: cargo update -w --locked
- run:
name: Build
command: cargo build --release
command: |
cargo build
cargo build --release
- run:
name: Clippy check
command: ./scripts/clippy_check.sh
Expand All @@ -78,12 +80,8 @@ jobs:
name: Cleanup old cache
command: .circleci/scripts/cache.sh cleanup
- run:
name: Unit tests
command: cargo test --lib --bins --no-fail-fast
- run:
name: Integration tests
# fails if jobs not limited; read more in https://github.com/0xSpaceShard/starknet-devnet-rs/issues/378
command: cargo test --jobs 9 --test '*' --no-fail-fast
name: Tests
command: cargo test --no-fail-fast

binary-build:
parameters:
Expand Down

0 comments on commit 59b1b3c

Please sign in to comment.