diff options
Diffstat (limited to '.github/workflows/c-cpp.yml')
| -rw-r--r-- | .github/workflows/c-cpp.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index fab7f21..dff17fd 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -15,7 +15,9 @@ jobs: - uses: actions/checkout@v2 with: submodules: 'true' - - name: update modules + - name: init submodule modules + run: git submodule foreach git submodule init + - name: pull submodule modules run: git submodule foreach git submodule update - name: run cmake run: cmake . |