Skip to content

readme, gitignore, test workflow, cmake align #102

readme, gitignore, test workflow, cmake align

readme, gitignore, test workflow, cmake align #102

Workflow file for this run

name: g++
on:
push:
branches:
- '*'
jobs:
build:
name: Build examples
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
shell: bash
env:
CC: gcc-11
CXX: g++-11
run: |
cd example
cmake -B build -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11
cd build
make
continue-on-error: false