Skip to content

Updated threads, structure, handling, and inline helpers #11

Updated threads, structure, handling, and inline helpers

Updated threads, structure, handling, and inline helpers #11

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup msvc
uses: ilammy/msvc-dev-cmd@v1
- name: build x64 release
shell: powershell
run: |
if (Test-Path "x64/example.sln") {
msbuild "x64/example.sln" /m /p:Configuration=Release /p:Platform=x64
} else {
Write-Error "x64/example.sln not found"
}