From 13237e38ee90c4eb1090fa1775999fe895aec729 Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Tue, 26 May 2020 13:22:56 -0700 Subject: [PATCH] Update CI config --- .github/workflows/rust.yml | 4 ++-- appveyor.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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