feat(cli): add db account-storage command #8883
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
| # Runs e2e tests using the testsuite framework | |
| name: e2e | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: [main] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| SEED: rustethereumethereumrust | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: e2e-testsuite | |
| runs-on: | |
| group: Reth | |
| env: | |
| RUST_BACKTRACE: 1 | |
| timeout-minutes: 90 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: taiki-e/install-action@nextest | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Run e2e tests | |
| run: | | |
| cargo nextest run \ | |
| --locked --features "asm-keccak" \ | |
| --workspace \ | |
| --exclude 'example-*' \ | |
| --exclude 'exex-subscription' \ | |
| --exclude 'reth-bench' \ | |
| --exclude 'ef-tests' \ | |
| --exclude 'op-reth' \ | |
| --exclude 'reth' \ | |
| -E 'binary(e2e_testsuite)' | |