From 43e806b3ba0850b38ad13e403372a9ed0c8c3c90 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Thu, 2 Jun 2022 12:04:16 +0100 Subject: [PATCH] ci: update submodules --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2098306..2d17530 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,8 @@ jobs: profile: minimal toolchain: stable override: true - + - name: Update git submodules + run: git submodule update --init --recursive - name: cargo test run: | cargo test @@ -34,6 +35,8 @@ jobs: toolchain: stable override: true components: rustfmt, clippy + - name: Update git submodules + run: git submodule update --init --recursive - name: cargo fmt run: cargo fmt --all -- --check - name: cargo clippy