Skip to content

Commit f084085

Browse files
committed
Merge branch 'main' into structure
2 parents c32e22d + 4a91452 commit f084085

File tree

5 files changed

+41
-3
lines changed

5 files changed

+41
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on: # either one of the following four cases
1919
- ready_for_review
2020

2121
jobs:
22-
build-deploy:
22+
build:
2323
runs-on: ubuntu-latest
2424
permissions:
2525
actions: write # needed to allow julia-actions/cache to delete old caches that it has created

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ deps/src/
2323
pyenv/
2424
/.quarto/
2525
/_freeze/
26-
/index_files/
2726
/_site/
2827
/_output/
2928
*.html
29+
*.json
3030
/site_libs/
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: "Jaynes Cummings Model"
3+
# subtitle: ""
4+
author: Alberto Mercurio
5+
6+
engine: julia
7+
---
8+
9+
```{julia}
10+
using QuantumToolbox
11+
12+
QuantumToolbox.versioninfo()
13+
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Tutorials for Quantum Toolbox in `Julia`
22

33
[![tutorials](https://img.shields.io/badge/tutorials-stable-blue.svg)](https://qutip.org/qutip-julia-tutorials/)
4-
[![Quarto Build](https://github.com/qutip/qutip-julia-tutorials/actions/workflows/publish.yml/badge.svg)](https://github.com/qutip/qutip-julia-tutorials/actions/workflows/publish.yml)
4+
[![Quarto Build](https://github.com/qutip/qutip-julia-tutorials/actions/workflows/publish.yml/badge.svg?branch=main)](https://github.com/qutip/qutip-julia-tutorials/actions/workflows/publish.yml)
55

66
This repositories collects tutorials of different complexity for using quantum toolbox in [`Julia`](https://julialang.org/). The tutorials of the following packages are included:
77

index.qmd

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "Tutorials for QuantumToolbox in Julia"
3+
# subtitle: ""
4+
author: Alberto Mercurio
5+
6+
engine: julia
7+
---
8+
9+
```{julia}
10+
using InteractiveUtils
11+
12+
versioninfo()
13+
```
14+
15+
```{julia}
16+
using QuantumToolbox
17+
18+
QuantumToolbox.versioninfo()
19+
```
20+
21+
```{julia}
22+
using HierarchicalEOM
23+
24+
HierarchicalEOM.versioninfo()
25+
```

0 commit comments

Comments
 (0)