Skip to content

Merge pull request #7 from kbayliss/fix/6-without-pip #66

Merge pull request #7 from kbayliss/fix/6-without-pip

Merge pull request #7 from kbayliss/fix/6-without-pip #66

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
formula:
- buckup
- heroku-audit
steps:
- uses: actions/checkout@v4
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Add our custom tap
run: |
ln -s "$(pwd)" "$(brew --repository)/Library/Taps/$GITHUB_REPOSITORY"
- name: Install ${{ matrix.formula }}
run: brew install $GITHUB_REPOSITORY/${{ matrix.formula }}
- name: Test ${{ matrix.formula }}
run: brew test $GITHUB_REPOSITORY/${{ matrix.formula }}