From 4daae9244ee4b444660578abd989d6f1080342f0 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 18 Mar 2024 06:14:02 +0100 Subject: [PATCH] ci: fix build features --- .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 c5916c8..73707b0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,6 +17,6 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: cargo build --verbose --no-default-features --features=tui + run: cargo build --verbose --no-default-features --features=tui,file - name: Run tests - run: cargo test --verbose --no-default-features --features=tui + run: cargo test --verbose --no-default-features --features=tui,file