From 00b91bf77dbb4dc7196f74f776a22a0fb5ebf670 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Tue, 22 Oct 2024 10:56:04 -0500 Subject: [PATCH] fix: submodule stuff --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 92c6c7b..d3896ca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -100,8 +100,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4.2.2 - with: - submodules: 'true' + - name: Submodule + run: | + git submodule init + git submodule update --remote - name: Install dependencies run: pip install -r src/scripts/app/requirements.txt - name: Run tests and collect coverage