Checkout json submodule

dev
Tomasz Kapuściński 2022-02-26 21:47:22 +01:00
parent c011e49112
commit d09c5da493
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,8 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Checkout the Google Test submodule - name: Checkout the Google Test submodule
run: git submodule update --init -- lib/googletest run: git submodule update --init -- lib/googletest
- name: Checkout the nlohmann json submodule
run: git submodule update --init -- lib/json
- name: Create build directory - name: Create build directory
run: cmake -E make_directory build run: cmake -E make_directory build
- name: Run CMake (for Linux) - name: Run CMake (for Linux)
@ -89,6 +91,8 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Checkout the Google Test submodule - name: Checkout the Google Test submodule
run: git submodule update --init -- lib/googletest run: git submodule update --init -- lib/googletest
- name: Checkout the nlohmann json submodule
run: git submodule update --init -- lib/json
- name: Install Ninja - name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master uses: seanmiddleditch/gha-setup-ninja@master
- name: Setup VS Environment - name: Setup VS Environment