diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db184de..e496e3a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,15 +23,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v2 - - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: | - 3.1.x - 5.0.x - 6.0.x + uses: actions/checkout@v3 - name: Test run: dotnet test --configuration Release diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8eeae16..bc50ffa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,15 +15,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v2 - - - name: Setup .NET - uses: actions/setup-dotnet@v1 - with: - dotnet-version: | - 3.1.x - 5.0.x - 6.0.x + uses: actions/checkout@v3 - name: Test run: dotnet test --configuration Release diff --git a/test/Parlot.Tests/Parlot.Tests.csproj b/test/Parlot.Tests/Parlot.Tests.csproj index 3721948..8d21b3b 100644 --- a/test/Parlot.Tests/Parlot.Tests.csproj +++ b/test/Parlot.Tests/Parlot.Tests.csproj @@ -1,9 +1,11 @@  - net5.0;netcoreapp3.1;net6.0 + netcoreapp3.1;net5.0;net6.0;net7.0 false latest + + NETSDK1138