Skip to content

Improve const-correctness for BppTree accessors #71

Improve const-correctness for BppTree accessors

Improve const-correctness for BppTree accessors #71

Workflow file for this run

name: Tests
on:
#push:
# branches-ignore:
# - '**'
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CTEST_OUTPUT_ON_FAILURE: 1
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: configure
run: cmake -S . -Bbuild -DENABLE_TEST_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug
- name: build
run: cmake --build build --target btree_test -j2
- name: test
run: |
cd build
ctest --build-config Debug
- name: collect code coverage
run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"