deps: Bump FluentDataBuilder from 8.0.114 to 8.0.130 #172
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: Pull Request | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| DOTNET_VERSION: "8.0.x" | |
| PROJECT_FILE: "source/FluentDataBuilder.sln" | |
| jobs: | |
| pull-request-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4.1.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ env.DOTNET_VERSION }} | |
| - name: Restore dependencies | |
| run: dotnet restore ${{ env.PROJECT_FILE }} | |
| - name: Build and analyze | |
| shell: pwsh | |
| run: | | |
| dotnet build --configuration Release --no-restore ${{ env.PROJECT_FILE }} | |
| dotnet test ${{ env.PROJECT_FILE }} |