We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475ed19 commit 9fc8de8Copy full SHA for 9fc8de8
1 file changed
.github/workflows/master.yml
@@ -12,11 +12,11 @@ jobs:
12
- uses: actions/checkout@v4
13
14
- name: Setup .NET SDK
15
- uses: actions/setup-dotnet@v3
+ uses: actions/setup-dotnet@v4
16
with:
17
dotnet-version: |
18
- 6.0.x
19
- 7.0.x
+ 8.0.x
+ 9.0.x
20
21
- name: Install .NET dependencies
22
run: dotnet restore
@@ -25,10 +25,10 @@ jobs:
25
run: sudo -E bash Scripts/install-libpcap.sh
26
27
- name: Build
28
- run: dotnet build PacketDotNet/PacketDotNet.csproj -c Release -f "net7.0"
+ run: dotnet build PacketDotNet/PacketDotNet.csproj -c Release -f "net9.0"
29
30
- name: Test
31
- run: dotnet test -c Release -f "net7.0"
+ run: dotnet test -c Release -f "net9.0"
32
33
windows:
34
runs-on: windows-latest
0 commit comments