decommission broadwell blades #21
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: Test validity of json | |
on: [push, pull_request] | |
jobs: | |
testjson: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: try all json files to see if they parse as valid | |
run: find ${{ github.workspace }} -name '*.json' -print0 | xargs -t -0 -I{} bash -c "cat {} | python -mjson.tool" |