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