From 3866e9642bdbd1bd05948bdd02282bbe23705330 Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Mon, 22 Jun 2020 19:14:37 +0530 Subject: [PATCH] Fix the issue with Github Actions The submodule needs to be synced when checking out the repository. Ref: https://github.com/actions/checkout Signed-off-by: Nabarun Pal --- .github/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cd2b366f0..08c3429da 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,6 +12,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + submodules: true - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: