We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552f8cb commit 853c680Copy full SHA for 853c680
1 file changed
.github/workflows/dotnet.yml
@@ -20,10 +20,10 @@ jobs:
20
- name: Setup .NET
21
uses: actions/setup-dotnet@v4
22
with:
23
- dotnet-version: 8.0.x
+ dotnet-version: 10.0.x
24
- name: Restore dependencies
25
- run: dotnet restore
+ run: dotnet restore src/CSharp/Rsk.AuthZen.sln
26
- name: Build
27
- run: dotnet build --no-restore
+ run: dotnet build src/CSharp/Rsk.AuthZen.sln --no-restore
28
- name: Test
29
- run: dotnet test --no-build --verbosity normal
+ run: dotnet test src/CSharp/Rsk.AuthZen.sln --no-build --verbosity normal
0 commit comments