Skip to content

add C++ test github action #2

add C++ test github action

add C++ test github action #2

Workflow file for this run

name: C++ test linux
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies and build
run: |
source ./tools/linux_ci.sh
mkdir -p src/build
cd src/build
cmake ..
make -j$(nproc)
make run_tests_with_coverage