Skip to content

Commit

Permalink
Run tests on dotnet 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Frassle committed Nov 15, 2023
1 parent 433529d commit f55bddd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Improvements-205.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
component: sdk
kind: Improvements
body: Support .NET 8.
time: 2023-11-15T12:53:22.850769699Z
custom:
PR: "205"
9 changes: 7 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,18 @@ env:

jobs:
Build:
strategy:
matrix:
dotnet-version: [6.0.x, 8.0.x]

runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet SDK v6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install Pulumi CLI
uses: pulumi/actions@v4
- name: Format Pulumi SDK
Expand All @@ -43,14 +47,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-11]
dotnet-version: [6.0.x, 8.0.x]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup dotnet SDK v6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: ${{ matrix.dotnet-version }}
- name: Set up Go 1.19.x
uses: actions/setup-go@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Set up DotNet 6.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
dotnet-quality: ga
- name: Install Pulumi CLI
uses: pulumi/actions@v4
Expand Down

0 comments on commit f55bddd

Please sign in to comment.