Skip to content

Commit c6863ba

Browse files
committed
Check openapi in CI
1 parent f6d2aca commit c6863ba

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/doc.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Documentation
2+
3+
permissions: {}
4+
5+
on:
6+
push:
7+
pull_request:
8+
types: [synchronize, opened]
9+
10+
jobs:
11+
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.13'
21+
cache: 'pip'
22+
23+
- run: pip install openapi-spec-validator
24+
25+
- run: openapi-spec-validator support/doc/api/openapi.yaml

0 commit comments

Comments
 (0)