diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index bc48a7a..aca121d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: dotnet restore src/Tomas.Terminal - name: Build - run: dotnet build src/Tomas.Terminal -c Release --no-restore + run: dotnet build src/Tomas.Terminal -c Release --no-restore --nologo test: timeout-minutes: 15 @@ -44,6 +44,6 @@ jobs: with: dotnet-version: ${{ matrix.dotnet }} - name: Install test dependencies - run: dotnet restore src/Tomas.Tests + run: dotnet restore src/Tomas.Tests - name: Test - run: dotnet test src --no-restore --debug \ No newline at end of file + run: dotnet test src --no-restore --nologo \ No newline at end of file diff --git a/src/Tomas.Terminal/GlobalUsing.cs b/src/Tomas.Terminal/Usings.cs similarity index 100% rename from src/Tomas.Terminal/GlobalUsing.cs rename to src/Tomas.Terminal/Usings.cs diff --git a/src/Tomas.Tests/ShellTests.cs b/src/Tomas.Tests/ShellTests.cs index e837252..0f7c04f 100644 --- a/src/Tomas.Tests/ShellTests.cs +++ b/src/Tomas.Tests/ShellTests.cs @@ -16,7 +16,7 @@ public class ShellTests [Fact] public void ProgramTest() { - // Create a mock program + // Create a mock program instance var program = new MockProgram(); // Assert that the Run method of the program and returns true when passed the shell object.