Skip to content

added printing the exception on the update post and various controlle… #26

added printing the exception on the update post and various controlle…

added printing the exception on the update post and various controlle… #26

Workflow file for this run

# .github/workflows/python-app.yml
name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Create Virtual Environment
run: python -m venv .venv
- name: Install Dependencies
run: |
source .venv/bin/activate
pip install -r requirements.txt
- name: Run application
run: |
source .venv/bin/activate
python run.py