2019-12-02 03:01:28 +00:00
|
|
|
name: Proxy.py Brew
|
|
|
|
|
2020-01-07 18:35:25 +00:00
|
|
|
on: [push, pull_request]
|
2019-12-02 03:01:28 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}-latest
|
|
|
|
name: Brew - Python ${{ matrix.python }} on ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [macOS]
|
2019-12-02 04:08:50 +00:00
|
|
|
python: [3.8]
|
|
|
|
max-parallel: 1
|
2019-12-02 03:01:28 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-02-02 21:05:06 +00:00
|
|
|
python-version: ${{ matrix.python }}
|
2019-12-02 03:01:28 +00:00
|
|
|
- name: Brew
|
|
|
|
run: |
|
2019-12-02 07:28:46 +00:00
|
|
|
brew install ./helper/homebrew/develop/proxy.rb
|
2019-12-02 03:01:28 +00:00
|
|
|
- name: Verify
|
|
|
|
run: |
|
2019-12-02 07:28:46 +00:00
|
|
|
proxy -h
|