Skip to content

Commit

Permalink
Merge pull request #13 from DanielSchiavini/revm
Browse files Browse the repository at this point in the history
feat: Call revm directly without Foundry
  • Loading branch information
charles-cooper authored Apr 14, 2024
2 parents 6eaef4a + daee94f commit 3ffe1f9
Show file tree
Hide file tree
Showing 22 changed files with 1,938 additions and 3,696 deletions.
42 changes: 40 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: rust

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ '*' ]
branches: ["*"]

jobs:
tests:
Expand All @@ -27,3 +27,41 @@ jobs:

- name: cargo test
run: cargo test

clippy:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --workspace --all-targets --all-features
env:
RUSTFLAGS: -Dwarnings

docs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo doc --workspace --all-features --no-deps --document-private-items
env:
RUSTDOCFLAGS: "--cfg docsrs -D warnings"

fmt:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --all --check
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
target/
**/__pycache__/
.idea/
Loading

0 comments on commit 3ffe1f9

Please sign in to comment.