Skip to content

Commit

Permalink
fix: Style Comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
brookemckim committed Dec 20, 2024
1 parent 2da268b commit 41558fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
28 changes: 5 additions & 23 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 41558fc

Please sign in to comment.