Update "ggml.llamacpp" to v3.0.2 #138
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
| # A github workflow that validates all json files against their schema | |
| name: Validate | |
| on: [push, pull_request] | |
| jobs: | |
| validate: | |
| name: Validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Validate json files | |
| run: npm run validate | |
| # This will fail the workflow if there are any uncommitted changes after the npm run all before. | |
| # expected. | |
| - name: Compare Directories | |
| id: diff | |
| run: | | |
| if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then | |
| echo "Detected uncommitted changes after build. See status below:" | |
| git diff --ignore-space-at-eol --text dist/ | |
| exit 1 | |
| fi |