Files
starter-workflows/ci/cmake.yml
T
2019-08-16 10:21:30 -07:00

18 lines
248 B
YAML

name: CMake CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake .
- name: build
run: cmake --build .
- name: test
run: ctest -C Debug