Skip to content

Bumped version to 0.4.5 #74

Bumped version to 0.4.5

Bumped version to 0.4.5 #74

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)