Skip to content

Update CI checkout action #5

Update CI checkout action

Update CI checkout action #5

Workflow file for this run

name: C++ CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Configure
run: cmake -S . -B build -DBUILD_TESTING=ON
- name: Build
run: cmake --build build --config Release --parallel
- name: Test
run: ctest --test-dir build -C Release --output-on-failure
- name: Run benchmark smoke test
run: .\build\Release\pathfinding_benchmark.exe