7 lines
168 B
YAML
7 lines
168 B
YAML
build-test:
|
|
image: python:3.9
|
|
script:
|
|
- python --version
|
|
- pip --version
|
|
- pip install ./requirements.txt
|
|
- uvicorn app:app --host 0.0.0.0 --port 80 |