File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-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
+
22
+ steps :
23
+ - uses : actions/checkout@v5
24
+ - run : |
25
+ /mount.sh && source /cvmfs/sw-nightlies.hsf.org/key4hep/setup.sh
26
+ mkdir testdir
27
+ cd testdir
28
+ cp ${GITHUB_WORKSPACE}/gaudi_ild_reco/README.md .
29
+ cat << 'EOF' > test.md
30
+ ---
31
+ jupyter:
32
+ kernelspec:
33
+ display_name: Python 3
34
+ language: python
35
+ name: python3
36
+ ---
37
+ EOF
38
+ cat README.md >> test.md
39
+ jupytext test.md -o test.ipynb --execute
You can’t perform that action at this time.
0 commit comments