Skip to content

Commit

Permalink
add CI for testing OpenAPI examples (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Jan 20, 2024
1 parent 59092a0 commit 299cfbb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-openapi-examples.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test OpenAPI examples

on:
pull_request:
branches:
- master
paths:
- 'core/openapi/ogcapi-records-1-example-ref-buildingblocks-bundle.yaml'
- 'core/openapi/ogcapi-records-1-example-ref-schema-repo.yaml'

jobs:
test-build-openapi-bundle:
name: Test OpenAPI examples
runs-on: ubuntu-latest
steps:
- name: Setup npm
uses: actions/setup-node@v2
- name: Install dependencies
run: npm install -g @apidevtools/swagger-cli
- name: Checkout
uses: actions/checkout@v2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Generate OpenAPI bundle
run: |
cd core/openapi
swagger-cli validate ogcapi-records-1-example-ref-buildingblocks-bundle.yaml
swagger-cli validate ogcapi-records-1-example-ref-schema-repo.yaml

0 comments on commit 299cfbb

Please sign in to comment.