Skip to content

Commit 7af5032

Browse files
committed
Try to add some CI
1 parent b958930 commit 7af5032

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

0 commit comments

Comments
 (0)