Skip to content

H0Tests

H0Tests #245

Workflow file for this run

name: H0Tests
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
H0Tests:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Install boost
run: sudo apt install -y libboost-all-dev
- name: Configure
run: ./configure
- name: Install
run: make install
- name: Run test
run: make h0_test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
gcov: true
gcov_include: tst/h0.cpp
token: ${{secrets.CODECOV_TOKEN}}
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)