Bump CommunityToolkit.Aspire.OllamaSharp from 9.3.1-beta.259 to 9.7.2 #60
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: PR Validation | |
| on: | |
| pull_request: | |
| branches: [ main, master, dev ] | |
| push: | |
| branches: [ main, master, dev ] | |
| jobs: | |
| validate: | |
| name: Validate on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| global-json-file: ./global.json | |
| - name: Update version | |
| shell: pwsh | |
| run: ./build.ps1 | |
| - name: Install Aspire workload | |
| run: dotnet workload install aspire | |
| - name: Build | |
| run: dotnet build -c Release | |
| - name: Test | |
| run: dotnet test --no-build -c Release --logger "trx;LogFileName=test-results.trx" | |
| - name: Upload test results | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: test-results-${{ matrix.os }} | |
| path: '**/test-results.trx' |