2019-10-30 03:41:39 +00:00
|
|
|
name: Proxy.py Docker
|
|
|
|
|
2020-01-07 18:35:25 +00:00
|
|
|
on: [push, pull_request]
|
2019-10-30 03:41:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2019-11-15 21:29:48 +00:00
|
|
|
runs-on: ${{ matrix.os }}-latest
|
2019-11-27 05:16:08 +00:00
|
|
|
name: Docker - Python ${{ matrix.python }} on ${{ matrix.os }}
|
2019-10-30 03:41:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-11-15 21:29:48 +00:00
|
|
|
os: [ubuntu]
|
2019-11-27 05:44:20 +00:00
|
|
|
python: [3.8]
|
2019-10-30 03:41:39 +00:00
|
|
|
max-parallel: 1
|
|
|
|
fail-fast: false
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python }}-dev
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install -r requirements-testing.txt
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
make container
|