Skip to content

oir is testing meanwhile #15

oir is testing meanwhile

oir is testing meanwhile #15

Workflow file for this run

name: build
run-name: ${{ github.actor }} is testing meanwhile
on: [push]
jobs:
build-and-run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install lcov
- run: make -j2
- run: ./test.out
- run: |
gcov -b -p -c test.gcno && \
lcov -c -d . -o cov.info && \
lcov --remove cov.info '/usr/local/include*' '/usr/include*' '*/extern/*' '*/test.cpp*' -o meanwhile.info
rm cov.info
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: meanwhile.info