diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 19b2e4e..5f1178b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,6 +10,6 @@ jobs: steps: - uses: actions/checkout@v1 - name: Build - run: cd cursive && cargo build --no-default-features --verbose + run: cd cursive && cargo build --features crossterm-backend --no-default-features --verbose - name: Run tests - run: cd cursive && cargo test --no-default-features --verbose + run: cd cursive && cargo test --features crossterm-backend --no-default-features --verbose diff --git a/appveyor.yml b/appveyor.yml index c9d6eaf..f5f996e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,4 +33,4 @@ build: false # Equivalent to Travis' `script` phase # TODO modify this phase as you see fit test_script: - - cd cursive && cargo test --verbose --all --no-default-features --features markdown pancurses-backend crossterm-backend + - cd cursive && cargo test --verbose --all --no-default-features --features markdown,pancurses-backend,crossterm-backend