No recommendation for external references for semantic identifier #535
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: Check-schemas-and-examples | |
on: | |
push: | |
branches: [ master, main ] | |
tags: [ "**" ] | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
Check-schemas-and-examples: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install netcore 3.1 (needed for schema validation) | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '3.1.x' | |
- name: Install schema-validation | |
working-directory: schemas | |
run: powershell .\InstallSchemaValidation.ps1 | |
- name: Validate example data | |
working-directory: schemas | |
run: powershell .\Validate.ps1 |