Skip to content

Add compilation without any warning to the CI #1

Add compilation without any warning to the CI

Add compilation without any warning to the CI #1

Workflow file for this run

name: Build
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
BUILD_TYPE: Release
no-warnings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: sudo apt-get install libboost-all-dev libeigen3-dev ninja-build; pip3 install cmake meson
- name: Build
run: meson setup build --warninglevel=3 --werror; meson compile -C build
- name: Test
run: meson test -C build