Skip to content

Updated nuget to 1.1.0 #22

Updated nuget to 1.1.0

Updated nuget to 1.1.0 #22

Workflow file for this run

name: .NET CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x #aktuelle dotnet verison eintragen
- name: Restore dependencies
run: dotnet restore Blazor.SimpleGrid.slnx
- name: Build
run: dotnet build Blazor.SimpleGrid.slnx --no-restore --configuration Release
- name: Test
run: dotnet test Blazor.SimpleGrid.slnx --no-build --configuration Release --verbosity normal