Skip to content

Commit d0418cd

Browse files
committed
Do not setup dotnet on Win runner
It should already be there Set Repo URL in project
1 parent be1a95e commit d0418cd

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/main.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
uses: actions/checkout@v2
2222
with:
2323
submodules: true
24-
- name: Setup .NET
25-
uses: actions/setup-dotnet@v1
26-
with:
27-
dotnet-version: 3.1.x
2824
- name: Cache installers
2925
uses: actions/cache@v2
3026
with:

projects/RabbitMQ.Client/RabbitMQ.Client.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<PackageTags>rabbitmq, amqp</PackageTags>
1818
<Product>RabbitMQ</Product>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
20+
<RepositoryUrl>https://github.com/rabbitmq/rabbitmq-dotnet-client.git</RepositoryUrl>
2021
<IncludeSymbols>true</IncludeSymbols>
2122
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2223
<AssemblyOriginatorKeyFile>../rabbit.snk</AssemblyOriginatorKeyFile>

tools/gha-run-tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ $env:RABBITMQ_RABBITMQCTL_PATH = $rabbitmqctl_path
2929
[Environment]::SetEnvironmentVariable('RABBITMQ_RABBITMQCTL_PATH', $rabbitmqctl_path, 'Machine')
3030

3131
$solution_file = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath 'RabbitMQDotNetClient.sln'
32-
dotnet test --no-build --logger "console;verbosity=detailed" $solution_file
32+
dotnet test --no-restore --no-build --logger "console;verbosity=detailed" $solution_file

0 commit comments

Comments
 (0)