Skip to content

Make googletest optional (default ON) #115

Make googletest optional (default ON)

Make googletest optional (default ON) #115

Workflow file for this run

name: Ubuntu-CI
on: [push, pull_request]
jobs:
ci:
name: ubuntu-gcc
runs-on: ubuntu-latest
env:
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: |
mkdir build
cd build
cmake ..
cmake --build .
ctest . --output-on-failure