Skip to content

Commit

Permalink
ci: add github actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 27, 2024
1 parent 2d15d7d commit d69e171
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build
on:
push:

jobs:
build-project:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
with:
submodules: recursive

- name: Build Project
uses: threeal/cmake-action@v2.0.0

0 comments on commit d69e171

Please sign in to comment.