Skip to content

Weitere API-Endpunkte #67

Weitere API-Endpunkte

Weitere API-Endpunkte #67

Workflow file for this run

on: [push, pull_request]
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@v0.8.2
with:
file_glob: openapi.yaml
spectral_ruleset: .spectral.yaml