From 1b67f1c14bde818e4a380505f3c1a166bf404a83 Mon Sep 17 00:00:00 2001 From: Mark Suckerberg Date: Tue, 30 Dec 2025 14:28:51 -0600 Subject: [PATCH] Add a build action because there's no reason not to at least test that --- .github/workflows/build.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0291b7b --- /dev/null +++ b/.github/workflows/build.yml @@ -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 . \ No newline at end of file