Skip to content

Fixed broken predefined macros #94

Fixed broken predefined macros

Fixed broken predefined macros #94

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