From c34aeab99acc91301e6666055b8bfc1563bb2d1c Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Wed, 9 Oct 2019 15:32:49 -0700 Subject: [PATCH] Try github actions without ncurses --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fec17ad..97ea326 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,6 +10,6 @@ jobs: steps: - uses: actions/checkout@v1 - name: Build - run: cargo build --verbose + run: cargo build --no-default-features --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --no-default-features --verbose