From 866a37fa090a991bb57209d9e4f56efd1a9fccc1 Mon Sep 17 00:00:00 2001 From: David Mulder Date: Tue, 26 Mar 2024 14:44:27 -0600 Subject: [PATCH] Init the kanidm submodule during workflows Signed-off-by: David Mulder --- .github/workflows/build.yml | 3 +++ .github/workflows/clippy.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16ad40e..2d1e39c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,6 +35,9 @@ jobs: tpm-udev \ libtss2-dev + - name: "Fetch submodules" + run: git submodule init && git submodule update + - name: "Run build" run: cargo build --all-features --all-targets continue-on-error: false diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index d8914bb..b3b3353 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -35,6 +35,9 @@ jobs: tpm-udev \ libtss2-dev + - name: "Fetch submodules" + run: git submodule init && git submodule update + - name: "Run clippy" run: cargo clippy --all-features --all-targets continue-on-error: false