Skip to content

Adds Shutdown. Moved docs to interfaces. (#67) #192

Adds Shutdown. Moved docs to interfaces. (#67)

Adds Shutdown. Moved docs to interfaces. (#67) #192

Workflow file for this run

name: Build And Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
buildAndTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Install dependencies
run: dotnet restore
- name: Initialize Testing Stack
run: docker-compose up -d
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore