Add Kotlin I/O operations to fix #736 #1033
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: JSON Syntax Validator | |
on: | |
push: | |
paths: | |
- '**.json' | |
pull_request: | |
jobs: | |
check: | |
name: Check JSON Files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: JSON Syntax Check | |
uses: limitusus/json-syntax-check@v1 | |
with: | |
pattern: "\\.json$" |