mirror of
https://github.com/httpie/cli.git
synced 2025-01-10 07:38:35 +01:00
b38352858f
Use of the `personal-files` interface is reserved for vetted publishers. The interface requires a validation, but we need to publish at least one package first. So let's skip that part, release a version and ask for the interface access in a second time. Also add a workflow to build & test the snap package.
20 lines
366 B
YAML
20 lines
366 B
YAML
name: Mac brew
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/packaging-mac-brew.yml
|
|
- extras/httpie.rb
|
|
|
|
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
|