Skip to content

Commit be08724

Browse files
committed
Rename CIs
1 parent 86d426d commit be08724

3 files changed

Lines changed: 12 additions & 15 deletions

File tree

.github/workflows/cpp-examples.yml

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

88
on:
99
push:
10-
branches: ['*']
10+
branches: ["*"]
1111
pull_request:
1212
branches: [main]
1313

.github/workflows/documentation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: Documentation generation
1+
name: Documentation
22

33
on:
44
push:
55
branches:
6-
- '*'
6+
- "*"
77
pull_request:
88
branches:
99
- main
@@ -32,7 +32,7 @@ jobs:
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

.github/workflows/python-examples.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
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

99
on:
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)
@@ -66,4 +63,4 @@ jobs:
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

0 commit comments

Comments
 (0)