diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml new file mode 100644 index 000000000..332c6e1cf --- /dev/null +++ b/.github/workflows/cmake.yml @@ -0,0 +1,14 @@ +name: Build +on: + push: +jobs: + build-project: + name: Build Project + runs-on: ubuntu-latest + steps: + - name: Checkout Project + uses: actions/checkout@v4 + + - name: Build Project + uses: threeal/cmake-action@v2.0.0 +