Skip to content

update gitignore

update gitignore #3

name: C++ Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_test:
runs-on: [self-hosted, linux, x64]
steps:
- uses: lukka/get-cmake@latest
with:
useLocalCache: true
- uses: actions/checkout@v4
- name: Configure
run: cmake -B build -G Ninja
- name: Build
run: cmake --build build -t all
- name: Test
run: ctest --test-dir build