feat: implement ArgoCD GitOps integration with TDD #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Minimal Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| minimal-test: | |
| name: Minimal Test | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Test basic functionality | |
| run: | | |
| echo "Testing basic shell commands..." | |
| ls -la | |
| echo "Current directory: $(pwd)" | |
| echo "Git status:" | |
| git status --short || true | |
| - name: Test simple matrix generation | |
| run: | | |
| echo "Testing matrix generation..." | |
| matrix='[{"name": "test", "path": ".", "type": "basic"}]' | |
| echo "Generated matrix: $matrix" | |
| echo "$matrix" | jq . | |
| - name: Success | |
| run: echo "✅ Minimal test passed!" |