Updated nuget to 1.1.0 #22
This file contains hidden or 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 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 |