Skip to content

Commit 4c74270

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

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/root.yml

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

0 commit comments

Comments
 (0)