-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
245 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Set up dotnet tools | ||
run: make install install-styleguide | ||
|
@@ -31,7 +31,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Set up dotnet tools | ||
run: make install install-styleguide | ||
|
@@ -51,7 +51,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Set up dotnet tools and dependencies | ||
run: make install | ||
|
@@ -67,7 +67,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Set up dotnet tools and dependencies | ||
run: make install | ||
|
@@ -102,7 +102,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Install docfx | ||
run: make install-tools | ||
|
@@ -124,7 +124,7 @@ jobs: | |
EASYPOST_PROD_API_KEY: "123" | ||
strategy: | ||
matrix: | ||
name: [ 'NetStandard20', 'Net60', 'Net70', 'Net80' ] | ||
name: [ 'NetStandard20', 'Net60', 'Net70', 'Net80', 'Net90' ] | ||
include: | ||
- name: NetStandard20 | ||
# can't run tests on .NET Standard, it's just a bridge between .NET Framework and .NET. | ||
|
@@ -137,6 +137,8 @@ jobs: | |
framework: net7.0 | ||
- name: Net80 | ||
framework: net8.0 | ||
- name: Net90 | ||
framework: net9.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
@@ -149,6 +151,7 @@ jobs: | |
6.x.x | ||
7.x.x | ||
8.x.x | ||
9.x.x | ||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -185,7 +188,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -205,7 +208,7 @@ jobs: | |
|
||
# Run the integration tests | ||
- name: Run Tests | ||
run: make integration-test fw=net7.0 # Always run integration tests on the latest framework | ||
run: make integration-test fw=net9.0 # Always run integration tests on the latest framework | ||
|
||
FSharp_Compatibility_Tests: | ||
runs-on: windows-2022 | ||
|
@@ -217,7 +220,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -237,7 +240,7 @@ jobs: | |
|
||
# Run the compatibility tests | ||
- name: Run Tests | ||
run: make fs-compat-test fw=net7.0 # Always run compatibility tests on the latest framework | ||
run: make fs-compat-test fw=net9.0 # Always run compatibility tests on the latest framework | ||
|
||
Visual_Basic_Compatibility_Test: | ||
runs-on: windows-2022 | ||
|
@@ -250,7 +253,7 @@ jobs: | |
- name: Install .NET SDK | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x.x | ||
dotnet-version: 9.x.x | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/[email protected] | ||
|
@@ -270,7 +273,7 @@ jobs: | |
|
||
# Run the compatibility tests | ||
- name: Run Tests | ||
run: make vb-compat-test fw=net7.0 # Always run compatibility tests on the latest framework | ||
run: make vb-compat-test fw=net9.0 # Always run compatibility tests on the latest framework | ||
|
||
|
||
# .NET Standard notes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters