From 2b8f2d50236e4ca1726e37f905dfc17c9f3801fa Mon Sep 17 00:00:00 2001 From: Toshiki Teramura Date: Sat, 31 Oct 2020 15:42:27 +0900 Subject: [PATCH] Fix CI --- .github/workflows/rust.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index bc1b1b4..9222001 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,7 +37,9 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --features=${{ matrix.feature }} + args: > + --features=${{ matrix.feature }} + --manifest-path=openblas-src/Cargo.toml env: VCPKG_ROOT: ${{ github.workspace }}/vcpkg @@ -61,7 +63,9 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --features=${{ matrix.feature }} + args: > + --features=${{ matrix.feature }} + --manifest-path=openblas-src/Cargo.toml linux: runs-on: ubuntu-18.04 @@ -86,4 +90,6 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --features=${{ matrix.feature }} + args: > + --features=${{ matrix.feature }} + --manifest-path=openblas-src/Cargo.toml