diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-05-14 16:16:31 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-05-14 16:16:31 -0500 |
commit | 57164aba14c157288df338b8cf2f5622d01ff460 (patch) | |
tree | a91454f6b008f26e0d5838ff3e334b7d394da356 /.github | |
parent | Add a C file to make C compilers actually build this into a shared object (diff) | |
download | locusts-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 '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 20 |
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 |