Skip to content

Commit 80c4bf4

Browse files
feat(signer): Add Dirk support (#206)
Co-authored-by: Dylan Socolobsky <[email protected]> Co-authored-by: Dylan Socolobsky <[email protected]>
1 parent c5a16ee commit 80c4bf4

File tree

37 files changed

+3836
-918
lines changed

37 files changed

+3836
-918
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,23 @@ jobs:
2222
steps:
2323
- name: Checkout sources
2424
uses: actions/checkout@v4
25+
with:
26+
submodules: true
2527
- name: Install stable toolchain
2628
uses: dtolnay/rust-toolchain@stable
29+
- name: Install protoc
30+
run: sudo apt-get install protobuf-compiler
2731
- run: cargo clippy --all -- -D warnings
2832
tests:
2933
name: Test
3034
runs-on: ubuntu-latest
3135
steps:
3236
- name: Checkout sources
3337
uses: actions/checkout@v4
38+
with:
39+
submodules: true
3440
- name: Install stable toolchain
3541
uses: dtolnay/rust-toolchain@stable
42+
- name: Install protoc
43+
run: sudo apt-get install protobuf-compiler
3644
- run: cargo test --all-features

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "crates/signer/proto"]
2+
path = crates/signer/proto
3+
url = https://github.com/wealdtech/eth2-signer-api.git

0 commit comments

Comments
 (0)