Skip to content

Add Linux build badge to README #8

Add Linux build badge to README

Add Linux build badge to README #8

Workflow file for this run

name: Windows Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release
- name: Test
working-directory: build
run: ctest --build-config Release