From c1837c94b584ee4c2ba9c5d4f37742f02a2d3b3a Mon Sep 17 00:00:00 2001 From: Robert Malhotra Date: Tue, 25 Nov 2025 22:23:36 -0500 Subject: [PATCH] added cicd testing --- .github/workflows/test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8baaf45 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: Test + +on: + pull_request: + branches: [main] + workflow_dispatch: + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: "1.24.3" + check-latest: true + cache: true + + - name: Run tests + run: go test ./...