From a75425b83101f69efe23a242a0cd4b4df578316c Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 5 May 2024 08:32:01 +0200 Subject: [PATCH] Test use-dev-tty feature --- .github/workflows/crossterm_test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/crossterm_test.yml b/.github/workflows/crossterm_test.yml index c5cbe95c..31123080 100644 --- a/.github/workflows/crossterm_test.yml +++ b/.github/workflows/crossterm_test.yml @@ -66,6 +66,10 @@ jobs: if: matrix.os != 'windows-2019' run: cargo test --no-default-features -- --nocapture --test-threads 1 continue-on-error: ${{ matrix.can-fail }} + - name: Test no default features with use-dev-tty feature enabled + if: matrix.os != 'windows-2019' + run: cargo test --no-default-features --features "use-dev-tty events" -- --nocapture --test-threads 1 + continue-on-error: ${{ matrix.can-fail }} - name: Test no default features with windows feature enabled if: matrix.os == 'windows-2019' run: cargo test --no-default-features --features "windows" -- --nocapture --test-threads 1