Skip to content

[DRAFT] Adding Ports - WIP #116

[DRAFT] Adding Ports - WIP

[DRAFT] Adding Ports - WIP #116

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
ci:
name: ci
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install deps
run: sudo apt-get install lcov build-essential
- name: Run tests
run: |
cmake -B build -DCMAKE_BUILD_TYPE=DEBUG
cd build
cmake --build .
make test
make coverage
- name: Coverage
uses: romeovs/lcov-reporter-action@2a28ec3e25fb7eae9cb537e9141603486f810d1a
with:
lcov-file: build/coverage.info
delete-old-comments: true
github-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ github.event_name == 'pull_request' }}