-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 905 Bytes
/
integration.yml
File metadata and controls
35 lines (28 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Integration Test CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
integration:
name: Simulation Engine & Logic Sync
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python Environment
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install numpy matplotlib
pip install git+https://github.com/gprMax/gprMax.git || echo "gprMax installation skipped, using mock for integration"
- name: Verify Physics Integrity
run: |
python .github/workflows/test_integration.py
- name: Deployment Status
if: success()
run: echo "Integration successful. Simulation and Validation layers are in sync."