Bump requests from 2.32.0 to 2.32.2 #46
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: JSON Lint | |
on: | |
- pull_request | |
jobs: | |
lint: | |
name: JSON Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install jq | |
run: sudo apt-get update && sudo apt-get install -y jq | |
- name: Check JSON files | |
run: | | |
for json_file in $(find . -type f -name "*.json"); do | |
cat "$json_file" | jq . > /dev/null | |
if [ $? -ne 0 ]; then | |
echo "Invalid JSON in $json_file" | |
exit 1 | |
fi | |
done |