aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-05-14 16:16:31 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-05-14 16:16:31 -0500
commit57164aba14c157288df338b8cf2f5622d01ff460 (patch)
treea91454f6b008f26e0d5838ff3e334b7d394da356 /.github/workflows/cmake.yml
parentAdd a C file to make C compilers actually build this into a shared object (diff)
downloadlocusts-57164aba14c157288df338b8cf2f5622d01ff460.tar
locusts-57164aba14c157288df338b8cf2f5622d01ff460.tar.gz
locusts-57164aba14c157288df338b8cf2f5622d01ff460.tar.bz2
locusts-57164aba14c157288df338b8cf2f5622d01ff460.tar.lz
locusts-57164aba14c157288df338b8cf2f5622d01ff460.tar.xz
locusts-57164aba14c157288df338b8cf2f5622d01ff460.tar.zst
locusts-57164aba14c157288df338b8cf2f5622d01ff460.zip
Add a half-assed doxygen implementation and start a really bad idea
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r--.github/workflows/cmake.yml20
1 files changed, 20 insertions, 0 deletions
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