Skip to content

add code coverage support #12

add code coverage support

add code coverage support #12

Workflow file for this run

name: Ubuntu
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Setup vcpkg
run: |
python ./tools/install-vcpkg.py
- name: Build
run: |
chmod +x ./build.sh
./build.sh clean release
chmod +x ./build/examples/example
chmod +x ./build/test/tests
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: binaries
path: |
./build/examples/example
./build/test/tests