Skip to content

Commit

Permalink
Merge pull request #10 from flashbots/unit-tests
Browse files Browse the repository at this point in the history
Add unit tests for proxy service
  • Loading branch information
avalonche authored Sep 28, 2024
2 parents d0b8ce3 + 3084877 commit cb3d23f
Show file tree
Hide file tree
Showing 5 changed files with 493 additions and 106 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Build
run: cargo build

- name: Run tests
run: cargo test
Loading

0 comments on commit cb3d23f

Please sign in to comment.