Skip to content

build: Add requirements.txt for Streamlit Cloud deployment #27

build: Add requirements.txt for Streamlit Cloud deployment

build: Add requirements.txt for Streamlit Cloud deployment #27

name: Q-Refine Benchmark Pipeline
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Quantum Dependencies
run: |
python -m pip install --upgrade pip
pip install qiskit qiskit-aer matplotlib numpy
- name: Run Q-Refine Enterprise Pipeline
run: |
python q_refine_pipeline.py
- name: Upload Dashboard Report
uses: actions/upload-artifact@v3
with:
name: q-refine-dashboard
path: q_refine_dashboard.png
- name: Post-Benchmark Status
run: echo "Q-Refine Benchmark completed successfully!"