Skip to content

Merge pull request #113 from hurricane1026/cmake #106

Merge pull request #113 from hurricane1026/cmake

Merge pull request #113 from hurricane1026/cmake #106

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