From 901e26116a6df180865df65acf647c6450d560ec Mon Sep 17 00:00:00 2001 From: kn0sys Date: Mon, 23 Sep 2024 05:26:18 -0400 Subject: [PATCH] checkout with submodule --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e16cf7e..983a62a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + submodules: 'true' - name: Install dependencies run: sudo apt install -y libssl-dev build-essential && rustup toolchain install nightly - name: Build and Clippy