build(deps): bump FluentAssertions from 6.9.0 to 6.12.0 #3524
This file contains 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: .NET 5 - Classic build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET 5 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 5.0.100 | |
- name: Install dotnet ef | |
run: dotnet tool install --global dotnet-ef | |
- name: Restore dependencies | |
run: dotnet restore src/WLODZIMIERZ.sln | |
- name: Build with dotnet | |
run: dotnet build src/WLODZIMIERZ.sln --configuration Release --no-restore |