Skip to content

chore: Bump FluentValidation from 11.10.0 to 11.11.0 in the dependencies group #45

chore: Bump FluentValidation from 11.10.0 to 11.11.0 in the dependencies group

chore: Bump FluentValidation from 11.10.0 to 11.11.0 in the dependencies group #45

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
solutionFile: CleanArchitecture.sln
projectName: CleanArchitecture
steps:
- uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal