참고소스 수정본

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,41 @@
name: Ruby SDK Test Suite
on:
pull_request:
branches:
- main
paths:
- apps/ruby-sdk/**
- .github/workflows/test-ruby-sdk.yml
push:
branches:
- main
paths:
- apps/ruby-sdk/**
workflow_dispatch:
jobs:
build-and-test:
name: Build and Test
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 Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
working-directory: ./apps/ruby-sdk
- name: Install dependencies
working-directory: ./apps/ruby-sdk
run: bundle install
- name: Run unit tests
working-directory: ./apps/ruby-sdk
run: bundle exec rake test