Skip to content

Bump gunicorn from 20.0.4 to 22.0.0 in /Premier-eye.API #262

Bump gunicorn from 20.0.4 to 22.0.0 in /Premier-eye.API

Bump gunicorn from 20.0.4 to 22.0.0 in /Premier-eye.API #262

Workflow file for this run

name: Web
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest requests
- name: Build API
run: |
cd Premier-eye.API
docker build -t sapfir0/web-premier-eye:server .
- name: Build SPA
run: |
cd Premier-eye.SPA
docker build -t sapfir0/web-premier-eye:client .
- name: Build docker-compose
run: |
docker-compose up --build -d
# - name: Test with pytest
# run: |
# cd Premier-eye.API
# pytest