Skip to content

Commit

Permalink
feat: BlockSTM PoC for REVM
Browse files Browse the repository at this point in the history
  • Loading branch information
hai-rise committed Apr 19, 2024
0 parents commit 57aee34
Show file tree
Hide file tree
Showing 15 changed files with 3,986 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy --all-targets --all-features

run-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo run --release
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
/target
perf.*
Loading

0 comments on commit 57aee34

Please sign in to comment.