Update src/Qowaiv.Validation.DataAnnotations/Qowaiv.Validation.DataAn… #437
Workflow file for this run
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: Build & Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET 9.0 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '9.0.x' | |
- name: Build with dotnet | |
run: dotnet build Qowaiv.Validation.sln --configuration Release | |
- name: Run unit tests | |
run: dotnet test Qowaiv.Validation.sln --no-build --configuration Release |