We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaafb61 commit f92751aCopy full SHA for f92751a
.github/workflows/publish.yml
@@ -33,6 +33,11 @@ jobs:
33
# Install the .NET SDK indicated in the global.json file
34
- name: Setup .NET
35
uses: actions/setup-dotnet@v3
36
+ with:
37
+ dotnet-version: |
38
+ 3.1.x
39
+ 6.0.x
40
+ 8.0.x
41
42
# Create the NuGet package in the folder from the environment variable NuGetDirectory
43
- run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }}
@@ -73,8 +78,16 @@ jobs:
73
78
runs-on: ubuntu-latest
74
79
steps:
75
80
- uses: actions/checkout@v3
81
+
82
+ # Install the .NET SDK indicated in the global.json file
76
83
77
84
85
86
87
88
89
90
91
- name: Run tests
92
run: dotnet test --configuration Release
93
0 commit comments