From 77e889de6e58376cd05f7f2df2feb8d33a9a0e32 Mon Sep 17 00:00:00 2001 From: puffer Date: Tue, 20 Feb 2024 10:28:02 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c3e693..15f7701 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: branches: - main schedule: - - cron: '0 0 * * *' # Everyday at midnight + - cron: '0 0 * * *' jobs: build: @@ -14,6 +14,11 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Initialize and update submodules + run: git submodule update --init --recursive - name: Install dependencies run: |