From f3a68aeb05e0dc3d9cea4d7a4570f72e73da0de3 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Mon, 25 Jan 2021 22:33:27 +0100 Subject: [PATCH] :construction_worker: add target for Valgrind tests --- .github/workflows/ubuntu.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index cfb9f3cc3..4e436689d 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -116,3 +116,14 @@ jobs: run: cmake -S . -B build -DJSON_CI=On - name: build run: cmake --build build --target ci_test_gcc + + ci_test_valgrind: + runs-on: ubuntu-latest + container: + image: nlohmann/json-ci:latest + steps: + - uses: actions/checkout@v2 + - name: cmake + run: cmake -S . -B build -DJSON_CI=On + - name: build + run: cmake --build build --target ci_test_valgrind