Skip to content

Fix compliation error with g++ #5

Fix compliation error with g++

Fix compliation error with g++ #5

Workflow file for this run

name: CMake
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt -y install g++ gcc cmake
- name: FetchSubmodules
run: |
git submodule init
git submodule update
- name: Build
run: |
mkdir -p build
cd build
cmake ../
cmake --build . -j
- name: Run
run: |
./build/BabelLibrary