We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c0ec3 commit b027d35Copy full SHA for b027d35
.github/workflows/build_and_test.yml
@@ -52,19 +52,13 @@ jobs:
52
${{ hashFiles( 'conanfile.py' ) }}-${{ matrix.triplet }}
53
54
# Run CMake to generate Ninja project files, using the vcpkg's toolchain file to resolve and install the dependencies as specified in vcpkg.json.
55
- - name: Build.
+ - name: Build and Test.
56
run: |
57
mkdir build
58
cd build
59
cmake .. -DCMAKE_BUILD_TYPE=Release
60
make
61
-
62
- # Test the whole project with CTest.
63
- - name: Run Tests.
64
- run: |
65
if [ "$RUNNER_OS" != "Windows" ]; then
66
ctest
67
- else
68
- echo "Skipping on Windows."
69
fi
70
shell: bash
0 commit comments