Skip to content

aligned readme to use the new env script name + aligned the test work… #40

aligned readme to use the new env script name + aligned the test work…

aligned readme to use the new env script name + aligned the test work… #40

Workflow file for this run

name: g++
on:
push:
branches:
- '*'
pull_request:
branches:
- master
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