From c98db076f1cd31d14ce5689b7bb2b8d79ba73f35 Mon Sep 17 00:00:00 2001 From: Tyler Green Date: Wed, 10 Jul 2024 18:10:24 -0400 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9404cae..8328f51 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,13 +18,9 @@ jobs: - uses: actions/checkout@v3 - name: Setup protoc uses: arduino/setup-protoc@v2.0.0 - - name: Build tulsa - run: cd tulsa && cargo build --verbose - - name: Test tulsa - run: cd tulsa && cargo test --verbose - - name: Build example-app - run: cd example-app && cargo build --verbose - - name: Test example-app with custom libs - run: cd example-app && cargo test --verbose + - name: Build + run: cargo build --verbose + - name: Test + run: cargo test --verbose - name: Test example-app with third-party libs - run: cd example-app && cargo test --features use_dependencies --verbose + run: cd app && cargo test --features use_dependencies --verbose