File tree Expand file tree Collapse file tree 3 files changed +1328
-606
lines changed
Expand file tree Collapse file tree 3 files changed +1328
-606
lines changed Original file line number Diff line number Diff line change 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+ # code does compile.
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'
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## unreleased
8+
9+ ### Fixed
10+ - Updated swagger documentation
11+
712## 1.18.0 - 2021-07-08
813
914### Added
You can’t perform that action at this time.
0 commit comments