Skip to content

Merge pull request #20 from paullouisageneau/cmake-add-findlibjuice #85

Merge pull request #20 from paullouisageneau/cmake-add-findlibjuice

Merge pull request #20 from paullouisageneau/cmake-add-findlibjuice #85

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: submodules
run: git submodule update --init --recursive
- name: cmake
run: cmake -B build -DWARNINGS_AS_ERRORS=1
- name: make
run: (cd build; make)