From 4827948401d86241ac6c5c3136e0e77c3b6d0474 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Thu, 19 May 2022 18:23:55 -0700 Subject: [PATCH] Use '-q' (quiet) when running tests in CI. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f183ce4..e2fdaa79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,5 +79,5 @@ jobs: key: ${{ matrix.test.name }} - name: Run Tests - run: ./scripts/test.sh ${{ matrix.test.flag }} + run: ./scripts/test.sh ${{ matrix.test.flag }} -q shell: bash