Don't allow non-ascii characters in source ids #183
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: CI | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
checker: | |
name: Check for duplicates or errors | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Checking | |
run: python3 verify.py | |
json-check: | |
name: Check if JSON is valid by Schema | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validating | |
uses: lyubick/action-YAML-schema-validator@v2.1 | |
with: | |
json-schema-file: .vscode/opensource.schema.json | |
yaml-json-file-dir: base/index.json,extra/index.json |