Skip to content

Commit a3b7ef4

Browse files
committed
Add very basic GitHub Actions Workflow
1 parent a301904 commit a3b7ef4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/root.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Execute ROOT macros
2+
on:
3+
push:
4+
branches: 'main'
5+
pull_request:
6+
7+
jobs:
8+
root-v634:
9+
name: ROOT 6.34
10+
runs-on: ubuntu-latest
11+
container: rootproject/root:6.34.00-ubuntu24.04
12+
steps:
13+
- name: Check out repository
14+
uses: actions/checkout@v4
15+
- name: Execute ROOT macros
16+
run: make
17+
- name: Upload produced RNTuple ROOT files
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: RNTuple-ROOT
21+
path: "*.root"
22+
- name: Upload produced validation JSON files
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: Validation-JSON
26+
path: "*.json"

0 commit comments

Comments
 (0)