Skip to content

Commit 143a579

Browse files
committed
Lint contract tests in CI
1 parent 1de7a27 commit 143a579

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -759,35 +759,35 @@ jobs:
759759
- run:
760760
name: Clippy linting on burner
761761
working_directory: ~/project/contracts/burner
762-
command: cargo clippy -- -D warnings
762+
command: cargo clippy --tests -- -D warnings
763763
- run:
764764
name: Clippy linting on crypto-verify
765765
working_directory: ~/project/contracts/crypto-verify
766-
command: cargo clippy -- -D warnings
766+
command: cargo clippy --tests -- -D warnings
767767
- run:
768768
name: Clippy linting on hackatom
769769
working_directory: ~/project/contracts/hackatom
770-
command: cargo clippy -- -D warnings
770+
command: cargo clippy --tests -- -D warnings
771771
- run:
772772
name: Clippy linting on ibc-reflect
773773
working_directory: ~/project/contracts/ibc-reflect
774-
command: cargo clippy -- -D warnings
774+
command: cargo clippy --tests -- -D warnings
775775
- run:
776776
name: Clippy linting on ibc-reflect-send
777777
working_directory: ~/project/contracts/ibc-reflect-send
778-
command: cargo clippy -- -D warnings
778+
command: cargo clippy --tests -- -D warnings
779779
- run:
780780
name: Clippy linting on queue
781781
working_directory: ~/project/contracts/queue
782-
command: cargo clippy -- -D warnings
782+
command: cargo clippy --tests -- -D warnings
783783
- run:
784784
name: Clippy linting on reflect
785785
working_directory: ~/project/contracts/reflect
786-
command: cargo clippy -- -D warnings
786+
command: cargo clippy --tests -- -D warnings
787787
- run:
788788
name: Clippy linting on staking
789789
working_directory: ~/project/contracts/staking
790-
command: cargo clippy -- -D warnings
790+
command: cargo clippy --tests -- -D warnings
791791
- save_cache:
792792
paths:
793793
- /usr/local/cargo/registry

0 commit comments

Comments
 (0)