Skip to content

Commit 7ad3828

Browse files
Update ci.yml
1 parent 7e008f3 commit 7ad3828

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@ jobs:
4444

4545
- name: Check routing.yml validity
4646
run: |
47-
python -c "
48-
import yaml
49-
with open('config/routing.yml') as f:
50-
cfg = yaml.safe_load(f)
51-
assert 'routes' in cfg, 'routes key missing'
52-
assert 'deep_reasoning' in cfg['routes'], 'deep_reasoning route missing'
53-
assert 'code_analysis' in cfg['routes'], 'code_analysis route missing'
54-
print('routing.yml OK - all required routes present')
55-
"
47+
python -c "import yaml
48+
with open('config/routing.yml') as f:
49+
cfg = yaml.safe_load(f)
50+
assert 'routes' in cfg, 'routes key missing'
51+
assert 'deep_reasoning' in cfg['routes'], 'deep_reasoning route missing'
52+
assert 'code_analysis' in cfg['routes'], 'code_analysis route missing'
53+
print('routing.yml OK - all required routes present')
54+
"

0 commit comments

Comments
 (0)