]> Untitled Git - bdk/commitdiff
Remove test-readme-examples
authorLLFourn <lloyd.fourn@gmail.com>
Tue, 21 Feb 2023 06:15:00 +0000 (17:15 +1100)
committerDaniela Brozzoni <danielabrozzoni@protonmail.com>
Thu, 2 Mar 2023 09:56:27 +0000 (10:56 +0100)
we shouldn't have a feature flag for this it should always be done.

.github/workflows/cont_integration.yml

index 2c86094d272b11abcc7c92a3c4d324f1bbd94e98..85ecc04a31821a69b124a37d37f3aef0338d2d0b 100644 (file)
@@ -47,29 +47,6 @@ jobs:
       - name: Test
         run: cargo test --features ${{ matrix.features }}
 
-  test-readme-examples:
-    name: Test README.md examples
-    runs-on: ubuntu-latest
-    steps:
-      - name: checkout
-        uses: actions/checkout@v2
-      - name: cache
-        uses: actions/cache@v2
-        with:
-          path: |
-            ~/.cargo/registry
-            ~/.cargo/git
-            target
-          key: ${{ runner.os }}-cargo-test-md-docs-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
-      - name: Set default toolchain
-        run: rustup default nightly
-      - name: Set profile
-        run: rustup set profile minimal
-      - name: Update toolchain
-        run: rustup update
-      - name: Test
-        run: cargo test --features test-md-docs --no-default-features -- doctest::ReadmeDoctests
-
   check-wasm:
     name: Check WASM
     runs-on: ubuntu-20.04