diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..1723b22 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CMake + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build Project + uses: threeal/cmake-action@v2.1.0 + with: + build-type: Release + + - name: Test Project + uses: threeal/ctest-action@v1.1.0 + with: + build-config: Release