diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index aad9182d..53c5107e 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -15,6 +15,8 @@ jobs: matrix: os: [windows-latest, ubuntu-latest] runs-on: ${{ matrix.os }} + env: + DOTNET_NOLOGO: true steps: - name: Checkout @@ -26,7 +28,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Build run: dotnet build @@ -35,4 +37,7 @@ jobs: run: nuget install NUnit.ConsoleRunner -Version 3.13.0 -DirectDownload -OutputDirectory . - name: Run UnitTests - run: ./NUnit.ConsoleRunner.3.13.0/tools/nunit3-console.exe **/*Tests.dll + run: | + find artifacts/ -type f -name '*Tests.dll' | paste -sd ' ' + echo "TESTASSEMBLIES=$(find artifacts/ -type f -name '*Tests.dll' | paste -sd ' ')" >> $GITHUB_ENV + ./NUnit.ConsoleRunner.3.13.0/tools/nunit3-console.exe ${{ env.TESTASSEMBLIES }} diff --git a/src/SIL.LCModel/GenerateModel.proj b/src/SIL.LCModel/GenerateModel.proj index 5a2176c6..8617aada 100644 --- a/src/SIL.LCModel/GenerateModel.proj +++ b/src/SIL.LCModel/GenerateModel.proj @@ -1,6 +1,6 @@ - + diff --git a/tests/SIL.LCModel.Utils.Tests/SIL.LCModel.Utils.Tests.csproj b/tests/SIL.LCModel.Utils.Tests/SIL.LCModel.Utils.Tests.csproj index 1866e14c..3badc924 100644 --- a/tests/SIL.LCModel.Utils.Tests/SIL.LCModel.Utils.Tests.csproj +++ b/tests/SIL.LCModel.Utils.Tests/SIL.LCModel.Utils.Tests.csproj @@ -18,8 +18,7 @@ This package provides unit tests for SIL.LCModel.Utils and test utility classes< - - +