sourcify_all_chains #27
Workflow file for this run
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: "sourcify_all_chains" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| check_infer_version: | |
| description: "Check that we can infer the correct language version based on the available version pragmas." | |
| type: "boolean" | |
| required: false | |
| default: false | |
| check_binder: | |
| description: "Check name bindings on contracts reporting if there's any unresolved symbol." | |
| type: "choice" | |
| required: true | |
| default: "none" | |
| options: | |
| - "none" | |
| - "v1" | |
| - "v2" | |
| - "compare" | |
| jobs: | |
| run_tests: | |
| uses: "./.github/workflows/sourcify_single_chain.yml" | |
| with: | |
| chain_id: "${{ matrix.chain_id }}" | |
| check_infer_version: "${{ inputs.check_infer_version }}" | |
| check_binder: "${{ inputs.check_binder }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| chain_id: | |
| - 1 # Ethereum Mainnet | |
| - 42161 # Arbitrum One | |
| - 8453 # Base | |
| - 137 # Polygon Mainnet |