Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 730879f

Browse files
committedApr 19, 2024
feat: BlockSTM PoC for REVM
0 parents  commit 730879f

15 files changed

+3959
-0
lines changed
 

‎.github/workflows/ci.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
RUSTFLAGS: -Dwarnings
12+
13+
jobs:
14+
clippy:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- run: cargo clippy --all-targets --all-features
19+
20+
run-release:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- run: cargo run --release

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode
2+
/target
3+
perf.*

0 commit comments

Comments
 (0)
Please sign in to comment.