Skip to content

deps: Bump FluentDataBuilder from 8.0.114 to 8.0.130 #172

deps: Bump FluentDataBuilder from 8.0.114 to 8.0.130

deps: Bump FluentDataBuilder from 8.0.114 to 8.0.130 #172

Workflow file for this run

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 }}