Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ on:
branches: [main]
pull_request:

# simplest example of using the rust-base action
jobs:
rust-base:
uses: init4tech/actions/.github/workflows/rust-base.yml@main
with:
requires-private-deps: true
install-foundry: true
secrets:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}

SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ path = "bin/builder.rs"
name = "transaction-submitter"
path = "bin/submit_transaction.rs"

[features]
integration = []

[dependencies]
init4-bin-base = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion tests/block_builder_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod tests {
/// This test sets up a simulated environment using Anvil, creates a block builder,
/// and verifies that the block builder can successfully build a block containing
/// transactions from multiple senders.
#[ignore = "integration test"]
#[cfg(feature = "integration")]
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_handle_build() {
setup_logging();
Expand Down