mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 01:03:27 +01:00
21 lines
420 B
YAML
21 lines
420 B
YAML
name: Test Brew Package (MacOS)
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/test-package-mac-brew.yml
|
|
- docs/packaging/brew/httpie.rb
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
brew:
|
|
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
|