Add a GitHub action for building with CMake on MSVC.

This commit is contained in:
Etienne Dechamps 2020-10-18 13:06:03 +02:00 committed by Phil Burk
commit 9d3e583ce5

View file

@ -29,6 +29,17 @@ jobs:
- name: make - name: make
run: make run: make
build-cmake-msvc:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: cmake .
- name: build
run: cmake --build .
build-cmake-mingw: build-cmake-mingw:
runs-on: ubuntu-latest runs-on: ubuntu-latest