From 1df207532d8c0785e095e5f7e795149af7b48563 Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Thu, 26 Feb 2026 15:07:09 -0400 Subject: [PATCH] ci: validate fee json files --- .github/workflows/test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2e1c1d89..2c075316 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -27,6 +27,12 @@ jobs: pip install -r requirements-dev.txt pip install pytest-timeout + - name: Validate fee JSON files + run: | + for f in fee_allocator/fees_collected/v*_fees_*.json; do + python -m json.tool "$f" > /dev/null + done + - name: Run pytest env: DRPC_KEY: ${{ secrets.DRPC_KEY }}