From 949c102ff0c59205ffee7ae4da28925e732f22d0 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Jul 2020 15:47:52 +0100 Subject: [PATCH] workflows/tests: run brew test-bot --only-formulae. This will avoid some duplicate steps already run by this workflow while continuing to provide an integration test of the formula testing formula. --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 12f001d113..fa26431353 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -181,12 +181,12 @@ jobs: if: matrix.os == 'ubuntu-latest' run: docker build -t brew --build-arg=version=16.04 . - - name: Run brew test-bot + - name: Run brew test-bot --only-formulae --test-default-formula run: | if [ "$RUNNER_OS" = "Linux" ]; then - docker run --rm brew brew test-bot + docker run --rm brew brew test-bot --only-formulae --test-default-formula else - brew test-bot + brew test-bot --only-formulae --test-default-formula fi - name: Deploy the Docker image to GitHub and Docker Hub