Skip to content

B2CA-1648: Fix UI

B2CA-1648: Fix UI #51

Workflow file for this run

name: Unit testing with Codecov coverage checking
on:
workflow_dispatch:
push:
branches:
- master
- develop
pull_request:
jobs:
job_unit_test:
name: Unit tests
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Install dependencies
run: |
apt-get install -y libssl-dev libcmocka-dev
- name: Build unit tests
run: |
cmake -Btests/build -Htests/ && make -C tests/build/
- name: Run unit tests
run: |
make -C tests/build test