From f12bb747629feef876959b0cde5b6596050334d3 Mon Sep 17 00:00:00 2001 From: Kanav Gupta <33966400+kanav99@users.noreply.github.com> Date: Wed, 3 Dec 2025 17:57:13 -0500 Subject: [PATCH] Add GitHub Actions workflow for testing project --- .github/workflows/test.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..dddd8ad --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,16 @@ +name: Test +on: + push: +jobs: + test-project: + name: Test Project + runs-on: ubuntu-24.04 + steps: + - name: Checkout + uses: actions/checkout@v4.2.2 + + - name: Build Project + uses: threeal/cmake-action@v2.1.0 + + - name: Test Project + uses: threeal/ctest-action@v1.1.0