Skip to content

Bump Testcontainers.RabbitMq from 3.9.0 to 3.10.0 #163

Bump Testcontainers.RabbitMq from 3.9.0 to 3.10.0

Bump Testcontainers.RabbitMq from 3.9.0 to 3.10.0 #163

name: .NET Windows
on:
push:
branches: [ master,net50 ]
pull_request:
branches: [ master,net50 ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install rabbitmq
shell: pwsh
run: choco install rabbitmq -Version 3.8.5
- name: Restore dependencies
run: |
dotnet nuget locals all --clear
dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test Rebus.RabbitMq.Tests --no-build --verbosity normal -c Release