We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66d795e commit 2cbe40aCopy full SHA for 2cbe40a
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: brew test-bot
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+jobs:
8
+ test-bot:
9
+ runs-on: macos-latest
10
+ steps:
11
+ - name: Set up Homebrew
12
+ id: set-up-homebrew
13
+ uses: Homebrew/actions/setup-homebrew@master
14
+
15
+ - name: Cache Homebrew Bundler RubyGems
16
+ id: cache
17
+ uses: actions/cache@v3
18
+ with:
19
+ path: ${{ steps:set-up-homebrew.outputs.gems-path }}
20
+ key: ${{ runner.os }}-rubygems-${{ steps:set-up-homebrew.outputs.gems-hash }}
21
+ restore-keys: ${{ runner.os }}-rubygems-
22
23
+ - name: Run brew test
24
+ run: |
25
+ brew install --build-from-source Formula/bagel.rb
26
+ brew test Formula/bagel.rb
0 commit comments