feat: initial AWS Server Go SDK
test / go (push) Successful in 1m7s

This commit is contained in:
shiran
2026-08-22 22:14:08 +08:00
commit 3d4c2dbb20
16 changed files with 1272 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
name: test
on:
push:
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.24.x'
- run: test -z "$(gofmt -l .)"
- run: go vet ./...
- run: go test -race ./...