Add environment variable management commands for cloud deployments #5
Workflow file for this run
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: Test Deploy Command | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'cloud/commands/deploy.md' | |
| - 'cloud/tests/**' | |
| - '.github/workflows/test-deploy.yml' | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'cloud/commands/deploy.md' | |
| - 'cloud/tests/**' | |
| - '.github/workflows/test-deploy.yml' | |
| jobs: | |
| test-deploy-exclusions: | |
| name: Test Deploy File Exclusions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run deploy exclusion tests | |
| run: | | |
| cd cloud | |
| chmod +x tests/test-deploy-exclusions.sh | |
| ./tests/test-deploy-exclusions.sh | |
| - name: Test results summary | |
| if: always() | |
| run: | | |
| if [ $? -eq 0 ]; then | |
| echo "✅ All deploy exclusion tests passed" | |
| else | |
| echo "❌ Some deploy exclusion tests failed" | |
| exit 1 | |
| fi |