forked from extern/httpie-cli
4c8633c6e5
* Split the monolithic workflow into specific ones * Rename workflows, improve commands * Update pip from the venv * Fix Windows setup * Lowercase macos-latest * Fix Windows run, again
20 lines
394 B
YAML
20 lines
394 B
YAML
name: Check Brew Formula
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/packaging-mac-check-formula.yml
|
|
- extras/httpie.rb
|
|
|
|
jobs:
|
|
check-formula:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup Brew
|
|
run: |
|
|
brew developer on
|
|
brew update
|
|
- name: Build and test the Formula
|
|
run: make brew-test
|