Add a build action because there's no reason not to at least test that

This commit is contained in:
Mark Suckerberg
2025-12-30 14:28:51 -06:00
parent b5568d5493
commit 1b67f1c14b

33
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Build
on:
push:
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: Linux
os: ubuntu-latest
platform: linux
- name: Windows
os: windows-latest
platform: win
steps:
- name: Checkout Project
uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: CMake
run: |
mkdir build
cd build
cmake ..
cmake --build .