Add Cmake job to github action

This commit is contained in:
Nils André-Chang 2020-01-18 20:13:56 +00:00
parent 676be1f193
commit ab1af7c678

View File

@ -52,3 +52,12 @@ jobs:
- name: make
run: make
working-directory: ./linux
cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build && cd build && cmake ../src
- name: build
run: make
working-directory: build