Skip to content

Handle corner cases more appropriately. #3

Handle corner cases more appropriately.

Handle corner cases more appropriately. #3

Workflow file for this run

name: Compile and test
on:
- pull_request
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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