Normalize logging verbosity #100
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: Test | |
on: | |
push: | |
branches: ["*"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt update && sudo apt-get install -y git make cmake | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: cd test && mkdir build && cd build && cmake .. | |
- name: Build | |
run: cd test/build && make | |
- name: Run tests | |
run: ./test/build/spsp_test |