Skip to content

Update actions/checkout digest to 8ade135 #338

Update actions/checkout digest to 8ade135

Update actions/checkout digest to 8ade135 #338

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@8ade135a41bc03ea155e62e844d188df1ea18608 # 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/github-action@3b7078ee895f74fc267b7b267c88211df59fa816 # v2.2.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: build/coverage/lcov.info