File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : C++ examples verification
1+ name : C++ examples
22
33# Builds the C++ examples with CMake and smoke-tests the simplest one against a
44# fixture SQLite database. Mirrors python-examples.yml, but for the header-only
@@ -7,7 +7,7 @@ name: C++ examples verification
77
88on :
99 push :
10- branches : ['*' ]
10+ branches : ["*" ]
1111 pull_request :
1212 branches : [main]
1313
Original file line number Diff line number Diff line change 1- name : Documentation generation
1+ name : Documentation
22
33on :
44 push :
55 branches :
6- - ' * '
6+ - " * "
77 pull_request :
88 branches :
99 - main
3232 uses : actions/upload-pages-artifact@v3
3333 with :
3434 # Upload entire repository
35- path : ' ./docs'
35+ path : " ./docs"
3636 - name : Deploy to GitHub Pages
3737 id : deployment
3838 uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 44# Strategy: download the daily HallD SQLite snapshot so the examples
55# run against real data with a proper schema.
66
7- name : Python examples verification
7+ name : Python examples
88
99on :
1010 push :
11- branches : ['*' ]
11+ branches : ["*" ]
1212 pull_request :
1313 branches : [main]
1414
@@ -35,17 +35,14 @@ jobs:
3535 pip install --editable .
3636 pip install jsonpickle # for writing object example
3737
38- # - name: Download HallD SQLite snapshot
39- # run: |
40- # mkdir -p $GITHUB_WORKSPACE/tmp
41- # # Future put db creation here
42-
43-
38+ # - name: Download HallD SQLite snapshot
39+ # run: |
40+ # mkdir -p $GITHUB_WORKSPACE/tmp
41+ # # Future put db creation here
4442 # ── Run examples ──────────────────────────────────────────────
4543 # Each example gets its own step so failures are visible per-script.
4644 # continue-on-error keeps the workflow green while showing which
4745 # script had problems (yellow badge instead of silent swallow).
48-
4946 - name : " Example: 01_select_values_simple"
5047 run : python $GITHUB_WORKSPACE/python/examples/01_select_values_simple.py
5148 # Script must read RCDB_CONNECTION env var (see updated examples)
6663 run : python $GITHUB_WORKSPACE/python/examples/12_create_conditions_store_object.py
6764
6865 - name : " Example: 90_advanced_sqlalchemy_query"
69- run : python $GITHUB_WORKSPACE/python/examples/90_advanced_sqlalchemy_query.py
66+ run : python $GITHUB_WORKSPACE/python/examples/90_advanced_sqlalchemy_query.py
You can’t perform that action at this time.
0 commit comments