Delete Tableau/transaction_analysis.twb #30
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: Simple SQL CI/CD Pipeline 🚀 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| sql-ci-cd: | |
| name: 🚀 SQL CI/CD Simple Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛎 Checkout repository | |
| uses: actions/checkout@v4 # v4 | |
| - name: ✅ Verify SQL files exist | |
| run: ls -al sql/ | |
| - name: 📂 Upload SQL Artifacts | |
| uses: actions/upload-artifact@v4 # v4 | |
| with: | |
| name: sql-files | |
| path: sql/ |