From 5a361e3a338155860ab48c1be41fd42124a3bfa4 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Wed, 20 Mar 2024 17:29:29 +0100 Subject: [PATCH] ci: remove outdated dependency tests --- .github/workflows/build.yml | 23 ----------------------- contrib/depCargo.toml | 5 ----- 2 files changed, 28 deletions(-) delete mode 100644 contrib/depCargo.toml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6850c1a..b632ec4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -108,26 +108,3 @@ jobs: with: command: check args: --workspace --all-targets --all-features - dependency: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install latest stable - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - name: Create dependency - run: | - cargo new dep_test - cp contrib/depCargo.toml dep_test/Cargo.toml - cd dep_test - - name: Build dependency - uses: actions-rs/cargo@v1 - with: - command: check - args: --verbose - - name: Clean up - run: | - cd .. - rm -rf dep_test diff --git a/contrib/depCargo.toml b/contrib/depCargo.toml deleted file mode 100644 index 03984c7..0000000 --- a/contrib/depCargo.toml +++ /dev/null @@ -1,5 +0,0 @@ -# This is an add-on that must be added to any dependency using this library - -descriptor-wallet = { path = "..", features = ["all"] } - -[workspace]