From 37e7e84aca593c46dc0d4331bf71b280aaefb1b0 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 15 Dec 2023 19:45:46 -0800 Subject: [PATCH] github: make sure to init submodule otherwise it fails to find nostrdb --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d714d71..a01f0d2 100644 --- 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