File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run Tutorials
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ pull_request :
7
+ workflow_dispatch :
8
+ schedule :
9
+ - cron : ' 16 5 * * 1'
10
+
11
+ concurrency :
12
+ group : ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress : true
14
+
15
+ jobs :
16
+ ild-reconstruction :
17
+ runs-on : ubuntu-latest
18
+ container :
19
+ image :
20
+ ghcr.io/key4hep/key4hep-images/alma9-cvmfs:latest
21
+ privileged : true
22
+
23
+ steps :
24
+ - uses : actions/checkout@v5
25
+ - run : |
26
+ /mount.sh && source /cvmfs/sw-nightlies.hsf.org/key4hep/setup.sh
27
+ mkdir testdir
28
+ cd testdir
29
+ cp ${GITHUB_WORKSPACE}/gaudi_ild_reco/README.md .
30
+ cat << 'EOF' > test.md
31
+ ---
32
+ jupyter:
33
+ kernelspec:
34
+ display_name: Python 3
35
+ language: python
36
+ name: python3
37
+ ---
38
+ EOF
39
+ cat README.md >> test.md
40
+ jupytext test.md -o test.ipynb --execute
You can’t perform that action at this time.
0 commit comments