diff options
-rw-r--r-- | .github/workflows/build_and_test.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 617d289..d9c63a6 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -24,18 +24,10 @@ jobs: - uses: actions/checkout@v2 - name: Build - if: runner.os != 'Windows' run: | cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE -B build -S . cmake --build build --config $BUILD_TYPE - - name: Build with Visual Studio - if: runner.os == 'Windows' - shell: bash - run: | - cmake -B build -S . - cmake --build build --config $BUILD_TYPE - - name: Run tests working-directory: ${{ github.workspace }}/build run: | |