Skip to content

Fix time

Fix time #8

Workflow file for this run

name: C++ CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build
- name: Build
run: cmake --build build
- name: Test
working-directory: build
run: ctest --output-on-failure