From 57164aba14c157288df338b8cf2f5622d01ff460 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 14 May 2024 16:16:31 -0500 Subject: Add a half-assed doxygen implementation and start a really bad idea Signed-off-by: Matt Strapp --- .github/workflows/cmake.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/cmake.yml (limited to '.github/workflows') diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml new file mode 100644 index 0000000..e1b9cb8 --- /dev/null +++ b/.github/workflows/cmake.yml @@ -0,0 +1,20 @@ +name: CMake Builds + +on: + push: + pull_request: + +jobs: + build: + runs-on: $ {{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Configure CMake + run: cmake -B build -S . + - name: Build + run: cmake --build build -- cgit v1.2.3