From c269cbb615dd648b9b265002dd20619f9ea9da73 Mon Sep 17 00:00:00 2001 From: Angelo Santos Date: Mon, 8 Jul 2024 14:06:36 -0300 Subject: [PATCH] finished --- .github/workflows/dotnet.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b45d7a6..b49ede7 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -12,18 +12,18 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 8.0.x - - name: Display root directory contents - run: ls -la - - name: Display XPhone directory contents - run: ls -la XPhone - - name: Restore dependencies - run: dotnet restore ./XPhone - - name: Build - run: dotnet build ./XPhone --no-restore - - name: Test - run: dotnet test ./XPhone --no-build --verbosity normal + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Display root directory contents + run: ls -la + - name: Display XPhone directory contents + run: ls -la XPhone + - name: Restore dependencies + run: dotnet restore ./XPhone + - name: Build + run: dotnet build ./XPhone --no-restore + - name: Test + run: dotnet test ./XPhone --no-build --verbosity normal \ No newline at end of file