Merge pull request #52 from hwanny1128/feat/rag-function

fix: build option
This commit is contained in:
Daewoong Jeon 2025-10-30 12:25:53 +09:00 committed by GitHub
commit f133faa509
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ on:
SKIP_TESTS:
description: 'Skip Tests'
required: false
default: 'false'
default: 'true'
type: choice
options:
- 'false'
@ -100,7 +100,7 @@ jobs:
- name: Run Tests
env:
SKIP_TESTS: ${{ github.event.inputs.SKIP_TESTS || 'false' }}
SKIP_TESTS: ${{ github.event.inputs.SKIP_TESTS || 'true' }}
run: |
if [[ "$SKIP_TESTS" == "true" ]]; then
echo "⏭️ Skipping Tests (SKIP_TESTS=$SKIP_TESTS)"