참고소스 수정본

This commit is contained in:
LASTA_DEV01\lasta
2026-05-12 19:40:31 +09:00
parent 0f34a451fc
commit 2e9204243d
8708 changed files with 3259488 additions and 869 deletions

View File

@@ -0,0 +1,40 @@
name: Go SDK Check
on:
pull_request:
branches:
- main
paths:
- apps/go-sdk/**
- .github/workflows/test-go-sdk.yml
push:
branches:
- main
paths:
- apps/go-sdk/**
workflow_dispatch:
jobs:
build-and-vet:
name: Build and Vet
runs-on: blacksmith-4vcpu-ubuntu-2404
if: >-
github.event_name == 'workflow_dispatch' ||
github.event_name == 'pull_request' ||
(github.event_name == 'push' && github.ref == 'refs/heads/main')
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache-dependency-path: apps/go-sdk/go.sum
- name: Build
working-directory: ./apps/go-sdk
run: go build ./...
- name: Vet
working-directory: ./apps/go-sdk
run: go vet ./...