File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
- name : Checkout
16
16
uses : actions/checkout@v3
17
17
- name : Build
18
- run : ./build.sh
18
+ run : ./build.sh net8.0
19
19
- name : Test
20
- run : ./test.sh
21
-
20
+ run : ./test.sh net8.0
21
+
22
22
test-net9 :
23
23
runs-on : ubuntu-latest
24
24
container : mcr.microsoft.com/dotnet/sdk:9.0
27
27
- name : Checkout
28
28
uses : actions/checkout@v3
29
29
- name : Build
30
- run : ./build.sh
30
+ run : ./build.sh net9.0
31
31
- name : Test
32
- run : ./test.sh
32
+ run : ./test.sh net9.0
33
33
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
- dotnet restore
4
- dotnet build -c Release
3
+ dotnet restore -p:TargetFramework= " $1 "
4
+ dotnet build -c Release -p:TargetFramework= " $1 "
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
- dotnet test -c Release
3
+ dotnet test -c Release -p:TargetFramework= " $1 "
You can’t perform that action at this time.
0 commit comments