Skip to content

Add HTML and CSS files for Frontend viewing #9

Add HTML and CSS files for Frontend viewing

Add HTML and CSS files for Frontend viewing #9

Workflow file for this run

name: Python Application
on: [push]
jobs:
run-python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x' # Change to your preferred Python version, e.g., '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run the Python script
run: |
python src/quantum_voting.py