Skip to content

Commit

Permalink
Setup .NET 9 in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
chynesNR committed Sep 16, 2024
1 parent c94a0e1 commit e7741cf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/all_solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ jobs:
with:
fetch-depth: 0

- name: Setup .NET 9 Preview
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
with:
dotnet-version: '9.0.0-rc.1'

- name: Build FullAgent.sln
run: |
Write-Host "dotnet build --force --configuration Release -p:AllowUnsafeBlocks=true ${{ env.fullagent_solution_path }}"
Expand Down Expand Up @@ -147,6 +152,11 @@ jobs:
with:
vs-prerelease: true

- name: Setup .NET 9 Preview
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
with:
dotnet-version: '9.0.0-rc.1'

- name: List SDKS
run: dotnet --list-sdks
shell: powershell
Expand Down Expand Up @@ -189,6 +199,11 @@ jobs:
with:
vs-prerelease: true

- name: Setup .NET 9 Preview
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
with:
dotnet-version: '9.0.0-rc.1'

- name: Build UnboundedIntegrationTests.sln
run: |
Write-Host "List NuGet Sources"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
with:
fetch-depth: 0

- name: Setup .NET 9 Preview
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
with:
dotnet-version: '9.0.0-rc.1'

- name: Restore NuGet Packages
run: dotnet restore

Expand Down

0 comments on commit e7741cf

Please sign in to comment.