Skip to content

Extended prediction tests #39

Extended prediction tests

Extended prediction tests #39

Workflow file for this run

name: Valgrind tests
on:
pull_request:
branches: [main]
jobs:
test-all:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
submodules: recursive
- name: setup-env
run: sudo apt install cmake sqlite3 gcc valgrind
- name: build
run: cmake -B build && cmake --build build
env:
CXX: g++-13
- name: test-database-tests
run: valgrind ./build/bin/database_test
- name: test-api-tests
run: valgrind ./build/bin/api_test
- name: test-questionare-tests
run: valgrind ./build/bin/questionaire_test
- name: test-predictions-test
run: valgrind ./build/bin/predictions_test