Add submodule to ci

This commit is contained in:
2022-12-13 18:18:12 +01:00
parent 8f4bdd262a
commit 05c12561ac
2 changed files with 7 additions and 1 deletions

View File

@@ -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

View File

@@ -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: