From 05c12561acdb2bfa957b82bb7adb424511f1b581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Tue, 13 Dec 2022 18:18:12 +0100 Subject: [PATCH] Add submodule to ci --- .github/workflows/codeql.yml | 4 ++++ .github/workflows/main.yml | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index af3b88e..815a42c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -39,6 +39,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + with: + submodules: recursive # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -61,6 +63,8 @@ jobs: - if: matrix.language == 'cpp' name: Build CPP run: | + pip install -q --upgrade pip + pip install -q scikit-learn cython make install # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 55e10ec..f67a374 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,9 @@ jobs: python: ["3.10"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: recursive - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v2 with: