.gitea/workflows/test.yaml を追加
This commit is contained in:
31
.gitea/workflows/test.yaml
Normal file
31
.gitea/workflows/test.yaml
Normal 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!"
|
||||||
Reference in New Issue
Block a user