diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-05 21:36:42 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-05 21:36:46 +0900 |
commit | 4bf30e13cb0fc22db8b78e78ded24b107ff1083f (patch) | |
tree | c48d170176a20916d9a57500e51615d7a07f5ea5 /.github | |
parent | edb4bfd10f6f5240c88e818000371cd9718c1635 (diff) |
remove test from build steps in github actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml (renamed from .github/workflows/cmake.yml) | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/build.yml index 2075f57..a3c2968 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,3 @@ jobs: # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - name: Test - working-directory: ${{github.workspace}}/build - # Execute tests defined by the CMake configuration. - # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - run: ctest -C ${{env.BUILD_TYPE}} - |