mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
759 B
YAML
24 lines
759 B
YAML
name: configs-json-lint
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: configs JSON lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Check configs JSON format
|
|
run: |
|
|
files=("config_example.json" "testdata/configtest.json")
|
|
for file in "${files[@]}"; do
|
|
processed_file="${file%.*}_processed.${file##*.}"
|
|
jq '.exchanges |= sort_by(.name)' --indent 1 $file > $processed_file
|
|
if ! diff $file $processed_file; then
|
|
echo "jq differences found in $file! Please run 'make lint_configs'"
|
|
exit 1
|
|
else
|
|
rm $processed_file
|
|
echo "No differences found in $file 🌞"
|
|
fi
|
|
done |