diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 217f7cb..df7f6f4 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -1,6 +1,3 @@ -# This workflow will build a .NET project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net - name: .NET on: @@ -21,8 +18,8 @@ jobs: with: dotnet-version: 8.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore XPhone.sln - name: Build - run: dotnet build --no-restore + run: dotnet build XPhone.sln --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test XPhone.sln --no-build --verbosity normal