Schema sync 2023-09-22 from 1.3.139.0 #789
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: OpenAPI Parser Validation for latest OpenAPI docs | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
list-conversion-settings: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-conversion-settings.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v2 | |
- id: set-conversion-settings | |
run: echo "::set-output name=matrix::$(ls conversion-settings/*.json | sed 's/.*\///' | sed 's/\.[^.]*$//' | jq -R -s -c 'split("\n")[:-1]')" | |
build: | |
needs: list-conversion-settings | |
strategy: | |
matrix: | |
version: ["v1.0", "beta"] | |
settings: ${{ fromJson(needs.list-conversion-settings.outputs.matrix) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- name: Validate latest OpenAPI docs | |
run: ./scripts/run-openapi-validation.ps1 -repoDirectory "${{ github.workspace }}" -version "${{ matrix.version }}" -platformName "${{ matrix.settings }}" | |
shell: pwsh |