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.
This commit is contained in:
Mike McQuaid 2020-07-27 15:47:52 +01:00
parent 8b11584785
commit 949c102ff0
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -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