Skip to content

Commit 0afad0d

Browse files
committed
Try to add some CI
1 parent b958930 commit 0afad0d

File tree

1 file changed

+39
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)