This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / .tangled / workflows / rust-test-bobbin.yml
725 B 38 lines
1when: 2 - event: ["push"] 3 branch: master 4 paths: 5 - bobbin/crates/** 6 - shuttle/** 7 - lexicons/** 8 - Cargo.toml 9 - Cargo.lock 10 - rust-toolchain.toml 11 - .tangled/workflows/rust-test-bobbin.yml 12 13engine: nixery 14 15dependencies: 16 nixpkgs: 17 - gcc 18 - gnumake 19 - cmake 20 - perl 21 - gawk 22 - gnused 23 - gnugrep 24 - findutils 25 - protobuf 26 github:nix-community/fenix/f6670530f53e69cc284f7aef818eb0f08fe81905: 27 - stable.defaultToolchain 28 29environment: 30 CARGO_INCREMENTAL: "0" 31 CARGO_PROFILE_DEV_DEBUG: "0" 32 CARGO_PROFILE_TEST_DEBUG: "0" 33 RUST_BACKTRACE: "1" 34 35steps: 36 - name: bobbin and shuttle tests 37 command: | 38 cargo test --locked -p 'bobbin*' -p shuttle