Skip to content

Run RabbitMQ tests, including ones highlighting issue #130

Run RabbitMQ tests, including ones highlighting issue

Run RabbitMQ tests, including ones highlighting issue #130

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.101
- name: Install dependencies
run: dotnet restore Tesseract.sln
- name: Build
run: dotnet build Tesseract.sln --configuration Release
- name: Test
run: dotnet test "./tests/Tests.sln"