opt: separate finality and commit (#80) #131
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: Grevm Ethereum | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # check out | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| # install rust tools | |
| - name: Set up Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Run tests | |
| run: cargo test --features update-submodule-ethereum-tests --test ethereum |