Merge branch 'master' of https://github.com/ersilia-os/ersilia #325
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 check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write # required to leave comments on pull requests | |
jobs: | |
json-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3.5.3 | |
- name: json syntax check | |
uses: GrantBirki/json-yaml-validate@1652fde01b1be71dfa7131148819e67639792673 # pin@v2.3.0 | |
with: | |
exclude_file: ".github/config/exclude.txt" # .gitignore style file for exclusions | |
comment: "true" # allow PR comments with error messages |