diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2e1c1d8..2c07531 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 }}