fix: set profile #130
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
target: [tap, brew.0, brew.1, brew.2, cask, deploy] | |
steps: | |
- name: uninstall brew | |
run: echo y | ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)" || true | |
- uses: actions/checkout@v1 | |
- name: Run test | |
run: make test.${{ matrix.target }} |