Handle corner cases more appropriately. #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |