File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Production Service Testing
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 */6 * * *'
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ test :
10
+ runs-on : ubuntu-latest
11
+ environment : production-service
12
+
13
+ steps :
14
+ - uses : actions/checkout@v3
15
+ with :
16
+ ref : 3.0_develop
17
+
18
+ - name : Set up Python 3.12
19
+ uses : actions/setup-python@v4
20
+ with :
21
+ python-version : 3.12
22
+
23
+ - name : Save secret
24
+ run : ' echo "$SERVICEX_YAML" > servicex.yaml'
25
+ shell : bash
26
+ env :
27
+ SERVICEX_YAML : ${{ secrets.SERVICEX_YAML }}
28
+
29
+ - name : Install package
30
+ run : |
31
+ python -m pip install --upgrade uv
32
+ uv pip install --system --upgrade pip setuptools wheel
33
+ uv pip install --system --upgrade '.[databinder,pandas,test]'
34
+ uv pip list --system
35
+
36
+ - name : Run example
37
+ working-directory : examples
38
+ run : python3 Uproot_UprootRaw_Dict.py
39
+
You can’t perform that action at this time.
0 commit comments