From d09c5da4935c1c63219031bc8547d38d41833978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Kapu=C5=9Bci=C5=84ski?= Date: Sat, 26 Feb 2022 21:47:22 +0100 Subject: [PATCH] Checkout json submodule --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa69d623..020885ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: - uses: actions/checkout@v2 - name: Checkout the Google Test submodule run: git submodule update --init -- lib/googletest + - name: Checkout the nlohmann json submodule + run: git submodule update --init -- lib/json - name: Create build directory run: cmake -E make_directory build - name: Run CMake (for Linux) @@ -89,6 +91,8 @@ jobs: - uses: actions/checkout@v2 - name: Checkout the Google Test submodule run: git submodule update --init -- lib/googletest + - name: Checkout the nlohmann json submodule + run: git submodule update --init -- lib/json - name: Install Ninja uses: seanmiddleditch/gha-setup-ninja@master - name: Setup VS Environment