feat: upgrade ai-architecture-charts llama-stack version to 0.7.4 and… #885
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: Run Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: [main, dev, feature] | |
| push: | |
| branches: [main, dev, feature] | |
| jobs: | |
| test: | |
| name: make test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Show branch and commit info | |
| run: | | |
| echo "::group::Repository Information" | |
| echo "Branch: ${{ github.ref_name }}" | |
| echo "Commit SHA: ${{ github.sha }}" | |
| echo "Event: ${{ github.event_name }}" | |
| echo "Repository: ${{ github.repository }}" | |
| echo "Actor: ${{ github.actor }}" | |
| echo "::endgroup::" | |
| # Python (for test-python: pytest) | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| # Node (for test-react: openshift-plugin yarn build + jest) | |
| - name: Set up Node.js for openshift-plugin | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: "yarn" | |
| cache-dependency-path: openshift-plugin/yarn.lock | |
| - name: Run all tests (make test) | |
| run: make test |