Skip to content

Create cmake-multi-platform.yml #1

Create cmake-multi-platform.yml

Create cmake-multi-platform.yml #1

# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
build_type: [Release]
steps:
- uses: actions/checkout@v4
- name: Build
run: |
. .\build.ps1; Build-Host -BuildType "Release" -Arch "x64"