Add a GitHub action for building with CMake.

This commit is contained in:
Etienne Dechamps 2020-10-18 10:48:57 +02:00 committed by Phil Burk
commit e96c5dbdec

View file

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