From 752cd81550dc7a3ad05d546d14fd2a5ab062c6c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Mon, 7 Apr 2025 21:33:26 -0300 Subject: [PATCH] Enable all tests in CI Some tests are behind the feature `allow_piped_choice`. By adding that to the feature list we include these tests. --- .github/workflows/build-artifacts-and-run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-artifacts-and-run-tests.yml b/.github/workflows/build-artifacts-and-run-tests.yml index cb3bf30..39df8af 100644 --- a/.github/workflows/build-artifacts-and-run-tests.yml +++ b/.github/workflows/build-artifacts-and-run-tests.yml @@ -98,7 +98,7 @@ jobs: id: concat-features shell: bash run: | - FEATURES=() + FEATURES=(allow_piped_choice) if [[ "${{ matrix.feature-use-zlib }}" == true ]]; then FEATURES+=(use_zlib); fi if [[ "${{ matrix.feature-use-zstd-thin }}" == true ]]; then FEATURES+=(use_zstd_thin); fi if [[ "${{ matrix.feature-unrar }}" == true ]]; then FEATURES+=(unrar); fi