From da4c792046dec963d2d28a644e9b9735e971c81a Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Thu, 10 Nov 2022 13:34:43 -0500 Subject: [PATCH] Fix CI paths --- .github/workflows/cont_integration.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 4422c0d..ba468de 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -36,12 +36,18 @@ jobs: - name: Update toolchain run: rustup update - name: Build - run: cargo build + run: | + cd bdk-ffi + cargo build - name: Clippy if: ${{ matrix.rust.clippy }} - run: cargo clippy --all-targets -- -D warnings + run: | + cd bdk-ffi + cargo clippy --all-targets -- -D warnings - name: Test - run: CLASSPATH=./tests/jna/jna-5.8.0.jar cargo test + run: | + cd bdk-ffi + CLASSPATH=./tests/jna/jna-5.8.0.jar cargo test fmt: name: Rust fmt @@ -58,4 +64,6 @@ jobs: - name: Update toolchain run: rustup update - name: Check fmt - run: cargo fmt --all -- --config format_code_in_doc_comments=true --check + run: | + cd bdk-ffi + cargo fmt --all -- --config format_code_in_doc_comments=true --check