File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
1515 - name : Checkout
1616 uses : actions/checkout@v3
1717 - name : Build
18- run : ./build.sh
18+ run : ./build.sh net8.0
1919 - name : Test
20- run : ./test.sh
21-
20+ run : ./test.sh net8.0
21+
2222 test-net9 :
2323 runs-on : ubuntu-latest
2424 container : mcr.microsoft.com/dotnet/sdk:9.0
2727 - name : Checkout
2828 uses : actions/checkout@v3
2929 - name : Build
30- run : ./build.sh
30+ run : ./build.sh net9.0
3131 - name : Test
32- run : ./test.sh
32+ run : ./test.sh net9.0
3333
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -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 11#! /usr/bin/env bash
22set -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