Check Tokens #4
This file contains hidden or 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: Check Tokens | |
on: | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
env: | |
RPC_PROVIDER: ${{ secrets.RPC_PROVIDER }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build project | |
run: cargo build | |
working-directory: scripts/validate-tokens | |
- name: Run token verification | |
run: cargo run -- --config tokenlist_config.json | |
working-directory: scripts/validate-tokens |