Skip to content

Commit 1da9e89

Browse files
chore: enable CI testing on feature branches
1 parent d4bb6c2 commit 1da9e89

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Unified Identity CI
2+
3+
on:
4+
push:
5+
branches: ["main", "develop", "feat/**"] # Triggers on any branch starting with feat/
6+
pull_request:
7+
branches: ["main", "develop"]
8+
workflow_dispatch: # This allows manual testing on ANY branch
9+
10+
jobs:
11+
integration-test:
12+
name: Hybrid Cloud PoC Integration Test
13+
runs-on: self-hosted
14+
15+
steps:
16+
- name: Checkout Code
17+
uses: actions/checkout@v4
18+
with:
19+
submodules: recursive
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: "3.10"
25+
26+
- name: Run Integration Tests
27+
shell: bash
28+
run: |
29+
cd hybrid-cloud-poc
30+
chmod +x ci_test_runner.py test_integration.sh
31+
# --single-machine targets the current host for all components
32+
# --no-color ensures clean logs in GitHub Actions
33+
./ci_test_runner.py --no-color --single-machine

0 commit comments

Comments
 (0)