Added some changes to the styling where the add content button is cen… #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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 |