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 686e4af commit 1d91826Copy full SHA for 1d91826
.github/workflows/swagger.yml
@@ -0,0 +1,28 @@
1
+name: swagger
2
+
3
+# This will run when:
4
+# - when new code is pushed to master/develop to make sure the
5
+# code does compile.
6
+# - when a pull request is created and updated to make sure the
7
8
+on:
9
+ push:
10
+ branches:
11
+ - master
12
+ - develop
13
14
+ pull_request:
15
16
+# Check to make sure swagger document is valid
17
+jobs:
18
19
+ # downloads all the dependencies and compiles the scala code
20
+ lint:
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - uses: actions/checkout@v2
24
25
+ - name: openapi-lint
26
+ uses: mhiew/redoc-lint-github-action@v2
27
+ with:
28
+ args: 'public/swagger.yml --skip-rule operation-operationId'
0 commit comments