27 lines
597 B
YAML
27 lines
597 B
YAML
name: Proxy.py Brew
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}-latest
|
|
name: Brew - Python ${{ matrix.python }} on ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macOS]
|
|
python: [3.8]
|
|
max-parallel: 1
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Brew
|
|
run: |
|
|
brew install ./helper/homebrew/develop/proxy.rb
|
|
- name: Verify
|
|
run: |
|
|
proxy -h
|