Skip to content

Commit cc7aa82

Browse files
authored
Add 3.0_develop CI to master branch (as github demands) (#414)
1 parent 502803f commit cc7aa82

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/ci-production.yaml

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

0 commit comments

Comments
 (0)