From 65c858f99ca0f54083375c6e437f2df442b1a965 Mon Sep 17 00:00:00 2001 From: thecoderatekid Date: Thu, 7 Aug 2025 18:55:21 +0000 Subject: [PATCH] Add .gitea/workflows/go-test.yml --- .gitea/workflows/go-test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/go-test.yml diff --git a/.gitea/workflows/go-test.yml b/.gitea/workflows/go-test.yml new file mode 100644 index 0000000..0b85fcb --- /dev/null +++ b/.gitea/workflows/go-test.yml @@ -0,0 +1,17 @@ +name: Go Test +on: [push] + +jobs: + go-test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21' + + - name: Run tests + run: go test ./... \ No newline at end of file