Refactor and enhance mb3r-stack integration bundle
#10
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - uses: azure/setup-helm@v4 | |
| with: | |
| version: v3.15.4 | |
| - name: Install dependencies | |
| run: python -m pip install -r requirements.txt | |
| - name: Validate repository | |
| run: make validate | |
| - name: Package chart | |
| run: make chart-package | |
| - name: Package assets | |
| run: make package-assets | |
| - name: Release dry run | |
| run: make release-dry-run |