Skip to content

Patch v1.5.1

Patch v1.5.1 #16

Workflow file for this run

name: build
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt install -y build-essential cmake libcppunit-dev
- name: Configure CMake
run: mkdir build && cd build && cmake ../src
- name: Building and testing
run: cd build && make -j3 && make test