-
Notifications
You must be signed in to change notification settings - Fork 12
26 lines (24 loc) · 1.04 KB
/
coverage_test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: coverage-test
on: [pull_request, push]
jobs:
build:
name: coverage-test
runs-on: ubuntu-20.04
# Run on external PRs, but not internal PRs as they'll be run by the push
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Fetch repository
run: git fetch --prune --unshallow
- name: Get submodules
run: git submodule update --init --force --recursive
- name: Install packages
run: sudo apt-get update && sudo apt-get install build-essential libhdf5-dev lcov
- name: Build and run unittests
run: ci/coverage_test.sh
- name: Upload Coverage to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/build-coverage/coverage.info.cleaned