Update .gitea/workflows/deploy.yml
Some checks failed
Deploy VConnect API / Test Build (push) Failing after 11s
Deploy VConnect API / Deploy to Server (push) Has been skipped

This commit is contained in:
2025-12-13 22:08:00 +09:00
parent 2dfa09a775
commit bb085b44ba

View File

@@ -9,20 +9,18 @@ jobs:
test:
name: Test Build
runs-on: ubuntu-latest
container: python:3.10-slim
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -V
pip -V
pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run basic tests
run: |
echo "✅ 코드 체크아웃 성공"