File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ workflows:
70
70
- package_check
71
71
- package_schema
72
72
- package_schema_derive
73
+ - package_cw_schema
73
74
- package_std
74
75
- package_vm
75
76
- package_vm_derive
@@ -419,6 +420,33 @@ jobs:
419
420
- target/debug/deps
420
421
key : cargocache-v2-package_schema_derive-rust:1.81-{{ checksum "Cargo.lock" }}
421
422
423
+ package_cw_schema :
424
+ docker :
425
+ - image : rust:1.81
426
+ steps :
427
+ - checkout
428
+ - run :
429
+ name : Version information
430
+ command : rustc --version; cargo --version; rustup --version; rustup target list --installed
431
+ - restore_cache :
432
+ keys :
433
+ - cargocache-v2-package_cw_schema-rust:1.81-{{ checksum "Cargo.lock" }}
434
+ - run :
435
+ name : Build
436
+ working_directory : ~/project/packages/cw-schema
437
+ command : cargo build --locked
438
+ - run :
439
+ name : Run tests
440
+ working_directory : ~/project/packages/cw-schema
441
+ command : cargo test --locked
442
+ - save_cache :
443
+ paths :
444
+ - /usr/local/cargo/registry
445
+ - target/debug/.fingerprint
446
+ - target/debug/build
447
+ - target/debug/deps
448
+ key : cargocache-v2-package_cw_schema-rust:1.81-{{ checksum "Cargo.lock" }}
449
+
422
450
package_std :
423
451
docker :
424
452
- image : rust:1.81
You can’t perform that action at this time.
0 commit comments