Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriele Santomaggio <[email protected]>
  • Loading branch information
Gsantomaggio committed Jun 5, 2024
1 parent 27683ab commit b058135
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-supported-net-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
- name: Display DotNet version
run: dotnet --version
- name: Restore
run: dotnet restore ./Build.csproj --verbosity=normal
run: dotnet restore ./rabbitmq-amqp-dotnet-client.sln --verbosity=normal
- name: Build
run: dotnet build ./Build.csproj --no-restore --verbosity=normal
run: dotnet build ./rabbitmq-amqp-dotnet-client.sln --no-restore --verbosity=normal
- name: Verify
run: dotnet format ./rabbitmq-amqp-dotnet-client.sln --no-restore --verbosity=diagnostic --verify-no-changes
- name: Test
run: dotnet test ./Build.csproj --no-build --logger "console;verbosity=detailed" /p:AltCover=true
run: dotnet test ./rabbitmq-amqp-dotnet-client.sln --no-build --logger "console;verbosity=detailed" /p:AltCover=true
- name: Stop toxiproxy
run: docker stop toxiproxy && docker rm toxiproxy
- name: Stop broker
Expand Down
2 changes: 1 addition & 1 deletion Tests/ConnectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void ValidateAddressBuilder()
Assert.Equal("guest-t", address.User());
Assert.Equal("guest-w", address.Password());
Assert.Equal("v1", address.VirtualHost());
Assert.Equal("amqp12", address.Scheme());
Assert.Equal("amqp1", address.Scheme());
}

[Fact]
Expand Down

0 comments on commit b058135

Please sign in to comment.