Skip to content

Merge pull request #21 from rieske/renovate/actions-checkout-4.x #335

Merge pull request #21 from rieske/renovate/actions-checkout-4.x

Merge pull request #21 from rieske/renovate/actions-checkout-4.x #335

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: install lcov
run: sudo apt-get install lcov
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Install nasm
run: sudo apt install nasm
- name: create build dir
run: mkdir build
- name: cmake
working-directory: build
run: cmake .. -DCMAKE_BUILD_TYPE=Debug
- name: make
working-directory: build
run: make
- name: test
working-directory: build
run: make test ARGS="-V"
- name: coverage
working-directory: build
run: make coverage
- name: prepare coverage
working-directory: build
run: cat coverage/*.info >> coverage/lcov.info
- name: Upload code coverage report to coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/coverage/lcov.info