Skip to content

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
# - name: Show Current Dir
# run: |
# cd
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:

Check failure on line 21 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yaml

Invalid workflow file

You have an error in your yaml syntax on line 21
python-version: '3.x'
- name: Install Gunicorn
run: |
pip install gunicorn
# - name: Create a requirements file
# run: |
# pip freeze > requirements.txt
- name: Install Dependencies
run: |
pip install -r requirements.txt
# - name: Run Tests
# run: |
# python -m pytest -v
- name: Run gunicorn_conf.py
run: |
gunicorn -c gunicorn_conf.py app:app
# - name: run the app
# run: |
# python app.py