From d0e3a85d09eb43c5de821dded7fc4aa76f593d2d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 7 May 2021 18:27:17 -0400 Subject: Testing (#5) * Fix separators appearing at the end once and for all * Add cleanpath executable tests * Escape slashes * Enable verbose testing --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index abb6236..394d587 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -7,8 +7,8 @@ on: branches: [ master ] env: - # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) - BUILD_TYPE: Release + TESTVAR_NIX: "/usr/local/bin:/usr/bin:/bin" + TESTVAR_WIN: "C:\\usr\\local\\bin;C:\\usr\\bin;C:\\bin" jobs: tests: @@ -54,5 +54,5 @@ jobs: - name: Test working-directory: ${{ github.workspace }}/build - run: ctest -C ${{ matrix.build_type }} + run: ctest -V -C ${{ matrix.build_type }} -- cgit