Files
aws-server-sdk/.gitea/workflows/test.yml
T
shiran 3d4c2dbb20
test / go (push) Successful in 1m7s
feat: initial AWS Server Go SDK
2026-08-22 22:14:08 +08:00

16 lines
298 B
YAML

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 ./...