Skip to content

Initial commit

Initial commit #1

on:
push:
paths:
- "openapi*.yaml"
pull_request:
paths:
- "openapi*.yaml"
jobs:
openapi_check:
name: "OpenAPI check"
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Create default .spectral.yaml file used for linting if its not existing already
- name: "Create spectral file if it not exists"
continue-on-error: true
run: |
set -C; echo "extends: spectral:oas" > .spectral.yaml
# Run Spectral
- uses: stoplightio/spectral-action@latest
with:
file_glob: openapi.yaml
spectral_ruleset: .spectral.yaml