From e78171913afcae4537db011c2bef4e23a9017c4c Mon Sep 17 00:00:00 2001 From: rhysd Date: Fri, 8 Jul 2022 12:53:46 +0900 Subject: [PATCH] fix CI failure since termion does not support Windows --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3203cf..e63c1df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - uses: Swatinem/rust-cache@v1 - run: cargo test --all-features -- --skip src/lib.rs if: ${{ matrix.os != 'windows-latest' }} - - run: cargo test --all-features -- --skip src\lib.rs + - run: cargo test --features=search -- --skip src\lib.rs if: ${{ matrix.os == 'windows-latest' }} lint: runs-on: ubuntu-latest