Skip to content

Commit a4a68b7

Browse files
author
jburnett
committed
Upgrade workflow to use net9.0
1 parent 77a0726 commit a4a68b7

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,16 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v4
21-
- name: Setup .NET 8.0
22-
uses: actions/setup-dotnet@v1
21+
- name: Setup .NET 9.0
22+
uses: actions/setup-dotnet@v4
2323
with:
24-
dotnet-version: 8.0.*
24+
dotnet-version: 9.0.*
2525
- name: Install dependencies
2626
run: dotnet restore
2727
- name: Build
2828
run: dotnet build --configuration ${{ matrix.build-config }} --no-restore
2929
- name: Test
30-
run: dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.System/Test.AMT.Extensions.System.csproj
30+
run: |
31+
dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.System/Test.AMT.Extensions.System.csproj
32+
dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.Linq/Test.AMT.Extensions.Linq.csproj
3133
# NOTE: does not test /Test.AMT.Extensions.Logging at GitHub b/c fails w/IP port comms.

0 commit comments

Comments
 (0)