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 a80a262
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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

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

0 comments on commit a80a262

Please sign in to comment.