.gitea/workflows/test.yaml を追加

This commit is contained in:
2025-11-25 02:03:16 +00:00
parent 0278fbf61a
commit a60566b4c8

View File

@@ -0,0 +1,31 @@
# .gitea/workflows/test.yaml
# 動作確認用の簡単なワークフロー
name: Test Workflow
on:
push:
branches:
- main
- master
workflow_dispatch: # 手動実行を有効化
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Print Info
run: |
echo "✅ Workflow is running!"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
echo "Event: ${{ github.event_name }}"
echo "Working Directory: $(pwd)"
- name: Check Helm
run: |
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm version
- name: Success
run: echo "🎉 Test completed successfully!"