Update Evmos REST RPCs #142
Workflow file for this run
This file contains 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
on: | |
pull_request: | |
branches: | |
- main | |
name: Pull request workflow | |
jobs: | |
validate_assetlists: | |
name: Check json schema | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check Chain List schema | |
uses: snapcart/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
json_schema: ./schema.chain.json | |
json_path_pattern: chainConfig\/.*.json | |
- name: Check Tokens List schema | |
uses: snapcart/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
json_schema: ./schema.token.json | |
json_path_pattern: tokens\/.*.json |