Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.

chore(deps): bump actions/github-script from 8 to 9 #334

chore(deps): bump actions/github-script from 8 to 9

chore(deps): bump actions/github-script from 8 to 9 #334

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ biweekly-runs ]
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
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 }}
GRAPH_API_KEY: ${{ secrets.GRAPH_API_KEY }}
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
EXPLORER_API_KEY_MAINNET: ${{ secrets.EXPLORER_API_KEY_MAINNET }}
EXPLORER_API_KEY_ARBITRUM: ${{ secrets.EXPLORER_API_KEY_ARBITRUM }}
EXPLORER_API_KEY_POLYGON: ${{ secrets.EXPLORER_API_KEY_POLYGON }}
EXPLORER_API_KEY_BASE: ${{ secrets.EXPLORER_API_KEY_BASE }}
EXPLORER_API_KEY_GNOSIS: ${{ secrets.EXPLORER_API_KEY_GNOSIS }}
run: |
python -m pytest -v -s --timeout=300