Files
SmokeAPI/.github/workflows/matrix-build.yml
2025-10-13 01:58:36 +05:00

19 lines
336 B
YAML

name: Matrix Build
on:
workflow_call:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ Linux, Windows ]
bitness: [ 32, 64 ]
uses: acidicoala/KoalaBox/.github/workflows/build-cmake.yml@master
with:
module: SmokeAPI
os: ${{ matrix.os }}
bitness: ${{ matrix.bitness }}