Create cmake.yml

This commit is contained in:
Sy Brand
2022-11-24 13:07:34 +00:00
committed by GitHub
parent 6b9843d4d2
commit e6d1f6e6bc

24
.github/workflows/cmake.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: CMake
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Test
working-directory: ${{github.workspace}}/build
run: cmake --build ${{github.workspace}}/build --target test