From 40e30a089943fd015c793252dcb318d92c96a1c6 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Tue, 27 Aug 2024 20:20:52 +0300 Subject: [PATCH] correct --manifest-path usage --- .github/workflows/test-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index ba49d1e8faa..d8573159da5 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -95,11 +95,11 @@ jobs: - name: test if: ${{ !matrix.platform.cross }} - run: cargo ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} ${{ matrix.features.args }} --manifest-path crates/tauri + run: cargo ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} ${{ matrix.features.args }} --manifest-path crates/tauri/Cargo.toml - name: test (using cross) if: ${{ matrix.platform.cross }} # update or remove the rev once we update the MSRV from 1.70.0 run: | cargo install cross --git https://github.com/cross-rs/cross --rev 20c73df79c9aaf78a2ad2e9fe8ae981668a729dc --locked - cross ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} ${{ matrix.features.args }} --manifest-path crates/tauri + cross ${{ matrix.platform.command }} --target ${{ matrix.platform.target }} ${{ matrix.features.args }} --manifest-path crates/tauri/Cargo.toml