forked from extern/httpie-cli
6f77e144e4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@v3
|
|
- name: Setup brew
|
|
run: |
|
|
brew developer on
|
|
brew update
|
|
- name: Build and test the formula
|
|
run: make brew-test
|