Skip to content

Update dotnet.yml

Update dotnet.yml #29

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore src/TestDataDefinitionFramework.sln
- name: Build
run: dotnet build src/TestDataDefinitionFramework.sln --no-restore --configuration Release
- name: Test
run: find -type f -name "*Tests.csproj" -exec dotnet test --configuration Release --no-build --verbosity normal {} \;