Skip to content

[Improvement] Make Compilation Flags Easier to Add #8

[Improvement] Make Compilation Flags Easier to Add

[Improvement] Make Compilation Flags Easier to Add #8

Workflow file for this run

name: CI - Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
cpp-unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install Conan and Ninja
run: |
uv tool install conan
uv tool install ninja
conan profile detect
bash < .github/scripts/conan-profile.sh
- name: Run unit tests
run: make test