Implement POST /books #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate API Specification | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest repo | |
uses: actions/checkout@v4 | |
- name: Install redocly-cli | |
run: | | |
npm install @redocly/cli -g | |
- name: Validate API Specification | |
run: | | |
redocly lint ./api/openapi.yml |