Skip to content

Increase minimal required CMake version to 3.5. #5

Increase minimal required CMake version to 3.5.

Increase minimal required CMake version to 3.5. #5

Workflow file for this run

name: Build and Test
on:
- pull_request
- push
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -G 'Unix Makefiles' .
- name: Build
run: make VERBOSE=1
- name: Test
run: make VERBOSE=1 ARGS=--verbose test