Skip to content

Commit

Permalink
Add CI/CD workflow for Sphinx documentation and report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
xleonplayz committed Aug 4, 2024
1 parent 1aaa8ae commit 2e8f3d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3

- name: Verify requirements.txt exists
run: |
if [ ! -f requirements.txt ]; then
echo "requirements.txt not found!"
exit 1
fi
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ pandas==2.0.3
matplotlib==3.7.2
seaborn==0.12.2
qiskit==0.42.1
reportlab==3.6.14
reportlab==3.6.13
sphinx==7.2.6
sphinx_rtd_theme==1.3.0

0 comments on commit 2e8f3d0

Please sign in to comment.