diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-05-07 18:27:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 18:27:17 -0400 |
commit | d0e3a85d09eb43c5de821dded7fc4aa76f593d2d (patch) | |
tree | 0f35d7d1ea267cccec6e476ed1eb3c010927c653 /.github | |
parent | b072d93e47949c9729c979fceef8a7c7bfd22d39 (diff) | |
download | cleanpath-d0e3a85d09eb43c5de821dded7fc4aa76f593d2d.tar.gz |
Testing (#5)
* Fix separators appearing at the end once and for all
* Add cleanpath executable tests
* Escape slashes
* Enable verbose testing
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 6 |
1 files changed, 3 insertions, 3 deletions
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 }} |