From 41558fc01200375d7bf6615f5740a066be4fd3bf Mon Sep 17 00:00:00 2001 From: Brooke McKim Date: Fri, 20 Dec 2024 13:45:06 -0500 Subject: [PATCH] fix: Style Comments. --- .github/workflows/publish.yml | 4 ++-- .github/workflows/tests.yml | 28 +++++----------------------- 2 files changed, 7 insertions(+), 25 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 22915d9..57a579e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: HOMEBREW_GITHUB_PACKAGES_TOKEN: ${{ github.token }} HOMEBREW_GITHUB_PACKAGES_USER: ${{ github.actor }} PULL_REQUEST: ${{ github.event.pull_request.number }} - run: brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST + run: "brew pr-pull --debug --tap=$GITHUB_REPOSITORY $PULL_REQUEST" - name: Push commits uses: Homebrew/actions/git-try-push@master @@ -32,4 +32,4 @@ jobs: if: github.event.pull_request.head.repo.fork == false env: BRANCH: ${{ github.event.pull_request.head.ref }} - run: git push --delete origin $BRANCH + run: "git push --delete origin $BRANCH" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e25c8b5..b4a3113 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,34 +27,16 @@ jobs: id: set-up-homebrew uses: Homebrew/actions/setup-homebrew@master - # - name: Cache Homebrew Bundler RubyGems - # id: cache - # uses: actions/cache@v1 - # with: - # path: ${{ steps.set-up-homebrew.outputs.gems-path }} - # key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} - # restore-keys: ${{ runner.os }}-rubygems- - - name: Install Homebrew Bundler RubyGems - if: steps.cache.outputs.cache-hit != 'true' - run: brew install-bundler-gems - - # - name: Adjust Git configuration - # run: | - # git lfs uninstall || true - # git lfs uninstall --local || true - # git lfs uninstall --system || true - # git config --global submodule.recurse 1 - # git config --global fetch.parallel 10 - # git config --global submodule.fetchJobs 10 + run: "brew install-bundler-gems" - - run: brew test-bot --only-cleanup-before + - run: "brew test-bot --only-cleanup-before" - - run: brew test-bot --only-setup + - run: "brew test-bot --only-setup" - - run: brew test-bot --only-tap-syntax + - run: "brew test-bot --only-tap-syntax" - - run: brew test-bot --only-formulae + - run: "brew test-bot --only-formulae" if: github.event_name == 'pull_request' - name: Upload bottles as artifact