diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 877794a..c099ed5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,10 +17,12 @@ jobs: with: submodules: recursive - name: Setup .Net - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: ${{ matrix.dotnet }} + dotnet-version: | + ${{ matrix.dotnet }} + 7.0.x - name: Project Build run: dotnet build --configuration Release - name: Project Test - run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework ${{ matrix.dotnet }} + run: dotnet test --configuration Release --no-build --no-restore --verbosity normal --framework net7.0 diff --git a/Amazon.IonDotnet.Tests/Amazon.IonDotnet.Tests.csproj b/Amazon.IonDotnet.Tests/Amazon.IonDotnet.Tests.csproj index 1a945ae..8e7465b 100644 --- a/Amazon.IonDotnet.Tests/Amazon.IonDotnet.Tests.csproj +++ b/Amazon.IonDotnet.Tests/Amazon.IonDotnet.Tests.csproj @@ -1,6 +1,7 @@  - netcoreapp2.1 + true + net7.0 false latest Debug;Release;Perf