Skip to content

Commit

Permalink
Remove old .NET versions from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Nov 24, 2024
1 parent 0288e44 commit 310dbc9
Showing 1 changed file with 6 additions and 48 deletions.
54 changes: 6 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,7 @@ jobs:
name: Build (Windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
Expand All @@ -37,15 +29,7 @@ jobs:
name: Build (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
Expand All @@ -67,15 +51,7 @@ jobs:
name: Build (macOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.x'
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
Expand All @@ -98,7 +74,7 @@ jobs:
runs-on: windows-latest
needs: build-windows
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download packages
uses: actions/download-artifact@v2
with:
Expand All @@ -107,12 +83,6 @@ jobs:
- name: Test (net462)
run: ./make.ps1 -frameworks net462 test-all
shell: pwsh
- name: Test (netcoreapp3.1)
run: ./make.ps1 -frameworks netcoreapp3.1 test-all
shell: pwsh
- name: Test (net6.0)
run: ./make.ps1 -frameworks net6.0 test-all
shell: pwsh
- name: Test (net8.0)
run: ./make.ps1 -frameworks net8.0 test-all
shell: pwsh
Expand All @@ -125,7 +95,7 @@ jobs:
runs-on: ubuntu-latest
needs: build-ubuntu
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download packages
uses: actions/download-artifact@v2
with:
Expand All @@ -134,12 +104,6 @@ jobs:
- name: Test (net462)
run: ./make.ps1 -frameworks net462 test-all
shell: pwsh
- name: Test (netcoreapp3.1)
run: ./make.ps1 -frameworks netcoreapp3.1 test-all
shell: pwsh
- name: Test (net6.0)
run: ./make.ps1 -frameworks net6.0 test-all
shell: pwsh
- name: Test (net8.0)
run: ./make.ps1 -frameworks net8.0 test-all
shell: pwsh
Expand All @@ -152,7 +116,7 @@ jobs:
runs-on: macos-latest
needs: build-macos
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download packages
uses: actions/download-artifact@v2
with:
Expand All @@ -161,12 +125,6 @@ jobs:
- name: Test (net462)
run: ./make.ps1 -frameworks net462 test-all
shell: pwsh
- name: Test (netcoreapp3.1)
run: ./make.ps1 -frameworks netcoreapp3.1 test-all
shell: pwsh
- name: Test (net6.0)
run: ./make.ps1 -frameworks net6.0 test-all
shell: pwsh
- name: Test (net8.0)
run: ./make.ps1 -frameworks net8.0 test-all
shell: pwsh
Expand Down

0 comments on commit 310dbc9

Please sign in to comment.