Skip to content
Merged
11 changes: 10 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
python-version: ["3.9", "3.10"]
permissions:
id-token: write
contents: write

steps:
- uses: actions/checkout@v4
Expand All @@ -39,7 +40,15 @@ jobs:

- name: Show package version
run: grep -r "version" pyproject.toml || grep -r "__version__" rtichoke/ || python -c "import rtichoke; print(rtichoke.__version__)"


- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Set Git identity for Quarto publishing
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"

- name: Render and Publish
working-directory: docs
run: uv run quarto publish gh-pages --no-browser --token "${{ secrets.GITHUB_TOKEN }}"
Expand Down
18 changes: 9 additions & 9 deletions docs/render_summary.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ This is a summary report generated with Quarto.

```{python}

import pickle
# import pickle


with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\probs_dict.pkl', 'rb') as file:
probs_dict = pickle.load(file)
# with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\probs_dict.pkl', 'rb') as file:
# probs_dict = pickle.load(file)

with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\reals_dict.pkl', 'rb') as file:
reals_dict = pickle.load(file)
# with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\reals_dict.pkl', 'rb') as file:
# reals_dict = pickle.load(file)

with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\times_dict.pkl', 'rb') as file:
times_dict = pickle.load(file)
# with open(r'C:\Users\I\Documents\GitHub\rtichoke_python\times_dict.pkl', 'rb') as file:
# times_dict = pickle.load(file)

from rtichoke.summary_report.summary_report import *

create_data_for_summary_report()
# create_data_for_summary_report()

```

```{python}
from rtichoke.summary_report.summary_report import *

render_summary_report( )
# render_summary_report( )
```


Expand Down
Loading