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