Skip to content

Commit a0d7f06

Browse files
committed
chore: initial setup
1 parent 864be1d commit a0d7f06

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

.github/workflows/main.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: brew test-bot
2+
on:
3+
push:
4+
branches: master
5+
pull_request: []
6+
jobs:
7+
test-bot:
8+
runs-on: macos-latest
9+
steps:
10+
- name: Set up Git repository
11+
uses: actions/checkout@v2
12+
- name: Run brew test-bot
13+
run: |
14+
set -e
15+
brew update
16+
HOMEBREW_TAP_DIR="/usr/local/Homebrew/Library/Taps/fidelity/homebrew-tap"
17+
mkdir -p "$HOMEBREW_TAP_DIR"
18+
rm -rf "$HOMEBREW_TAP_DIR"
19+
ln -s "$PWD" "$HOMEBREW_TAP_DIR"
20+
brew test-bot

Formula/.gitkeep

Whitespace-only changes.

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
# homebrew-tap
2-
Allow for homebrew based installation of Fidelity authored works before they are ready for homebrew-core
1+
# Fidelity Tap
2+
3+
## How do I install these formulae?
4+
`brew install fidelity/tap/<formula>`
5+
6+
Or `brew tap fidelity/tap` and then `brew install <formula>`.
7+
8+
## Documentation
9+
`brew help`, `man brew` or check [Homebrew's documentation](https://docs.brew.sh).

0 commit comments

Comments
 (0)