Skip to content

Commit

Permalink
Merge pull request #111 from Archomeda/ci/remove-netcoreapp2.1
Browse files Browse the repository at this point in the history
Remove netcoreapp2.1 and add net6.0 for testing
  • Loading branch information
Archomeda authored Feb 6, 2022
2 parents 3e14b35 + 6991608 commit 3e95ba3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
- windows-2022
dotnet:
- net6.0
- net5.0
- netcoreapp3.1
- netcoreapp2.1
- net461
exclude:
- os: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/command-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
- windows-2022
dotnet:
- net6.0
- net5.0
- netcoreapp3.1
- netcoreapp2.1
- net461
exclude:
- os: ubuntu-latest
Expand All @@ -45,7 +45,7 @@ jobs:

sonarcloud:
name: Analysis
runs-on: windows-latest
runs-on: windows-2022
needs: [pre]
steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
- windows-2022
dotnet:
- net6.0
- net5.0
- netcoreapp3.1
- netcoreapp2.1
- net461
exclude:
- os: ubuntu-latest
Expand All @@ -29,7 +30,7 @@ jobs:

release:
name: Release
runs-on: windows-latest
runs-on: windows-2022
needs: [test]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
nuget:
name: NuGet
runs-on: windows-latest
runs-on: windows-2022
steps:
- name: Download NuGet packages
shell: powershell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
sonarcloud:
name: Analysis
runs-on: windows-latest
runs-on: windows-2022
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Archomeda/Gw2Sharp'
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
name: Build
runs-on: windows-latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v2
- name: Download docfx
Expand Down
2 changes: 1 addition & 1 deletion Gw2Sharp.Tests/Gw2Sharp.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.1;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1;net461</TargetFrameworks>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>annotations</Nullable>
Expand Down

0 comments on commit 3e95ba3

Please sign in to comment.