Skip to content

Remove Autofac dependency #2

Remove Autofac dependency

Remove Autofac dependency #2

Workflow file for this run

name: Test
on:
pull_request:
branches: [main]
jobs:
# Build, test, publish to nuget
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
include-prerelease: true
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal