dotnet.yml (561B)
1 name: dotnet pipeline 2 3 on: 4 push: 5 branches: 6 - '*' 7 pull_request: 8 branches: 9 - '*' 10 11 jobs: 12 build: 13 14 runs-on: windows-latest 15 16 steps: 17 - uses: actions/checkout@v4 18 - name: Setup .NET 19 uses: actions/setup-dotnet@v4 20 with: 21 dotnet-version: 8.0.x 22 23 - name: Restore dependencies 24 run: dotnet restore SimpleMessagingService.sln 25 26 - name: Build 27 run: dotnet build SimpleMessagingService.sln --no-restore 28 29 - name: Test 30 run: dotnet test SimpleMessagingService.sln --no-build --verbosity normal