We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 935679a commit bf335eaCopy full SHA for bf335ea
.github/workflows/lint_openapi_spec.yml
@@ -0,0 +1,27 @@
1
+name: "Lint OpenAPI spec with vacuum"
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'QuantConnect-Platform-2.0.0.yaml'
7
+ pull_request:
8
9
10
11
+permissions:
12
+ contents: read
13
+ pull-requests: write
14
15
+jobs:
16
+ vacuum-lint:
17
+ name: Run OpenAPI linting with vacuum
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v3
22
23
+ - name: Run OpenAPI lint with vacuum
24
+ uses: pb33f/vacuum-action@v2
25
+ with:
26
+ openapi_path: "QuantConnect-Platform-2.0.0.yaml"
27
+ github_token: ${{ secrets.GH_ACCESS_TOKEN }}
0 commit comments