oir is testing barkeep #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
run-name: ${{ github.actor }} is testing barkeep | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-and-test-for-cpp: | |
name: "Build and test for C++" | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: | | |
sudo apt-get install lcov | |
make -j2 | |
./test.out | |
gcov -b -p -c test.gcno && \ | |
lcov -c -d . -o cov.info && \ | |
lcov --remove cov.info '/usr/local/include*' '/usr/include*' '*/subprojects/*' '*/test.cpp*' -o barkeep.info | |
rm cov.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: barkeep.info | |
# - run: ./demo.out | |
build-and-test-for-python: | |
name: "Build and test for Python" | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- run: | | |
pip install meson pytest | |
sudo apt install ninja-build | |
meson setup build --buildtype=release --warnlevel=3 | |
meson compile -C build python | |
PYTHONPATH=build/python pytest python/tests/test.py |