Skip to content

Commit

Permalink
fix!: specify scrypt params explicitly (#333)
Browse files Browse the repository at this point in the history
* fix!: specify scrypt params explicitly

* update readme

* fmt

* another golden test

* fmt

* doc

* updated tonic

* update clap

* set action

* update readme

* fix action

* setup protoc

* bump action version

* submodule recurse

* fix cli parsing

* update readme

* update tofn

* enable help with clap
  • Loading branch information
milapsheth authored Jul 11, 2024
1 parent 15e5185 commit 1d3945f
Show file tree
Hide file tree
Showing 15 changed files with 452 additions and 238 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
- name: Checkout code and submodule
uses: actions/checkout@v4
with:
submodules: recursive
submodules: 'recursive'

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
- name: Checkout code and submodule
uses: actions/checkout@v4
with:
submodules: recursive
submodules: 'recursive'

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand Down
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "proto"]
path = proto
url = https://github.com/axelarnetwork/grpc-protobuf.git
fetchRecurseSubmodules = true
Loading

0 comments on commit 1d3945f

Please sign in to comment.