nostrdb-rs

nostrdb in rust!
git clone git://jb55.com/nostrdb-rs
Log | Files | Refs | Submodules | README | LICENSE

commit 37e7e84aca593c46dc0d4331bf71b280aaefb1b0
parent e98bfffa05824197c38c35092e0a4ef35b7acceb
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 15 Dec 2023 19:45:46 -0800

github: make sure to init submodule

otherwise it fails to find nostrdb

Diffstat:
M.github/workflows/rust.yml | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -16,6 +16,8 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Initialize Submodules + run: git submodule update --init --recursive - name: Build run: cargo build --verbose - name: Run tests