feat: get_evm method added to network spec to make EVM implementation… #5
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: benchmarks | ||
| on: | ||
| workflow_bench: | ||
| # push: | ||
| # branches: [ "master" ] | ||
| env: | ||
| MAINNET_EXECUTION_RPC: ${{ secrets.MAINNET_EXECUTION_RPC }} | ||
| GOERLI_EXECUTION_RPC: ${{ secrets.GOERLI_EXECUTION_RPC }} | ||
| jobs: | ||
| benches: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - uses: actions-rs/toolchain@v1 | ||
| with: | ||
| profile: minimal | ||
| toolchain: nightly | ||
| override: true | ||
| components: rustfmt | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: bench | ||