Skip to content

Allow to inject the service transient #37

Allow to inject the service transient

Allow to inject the service transient #37

Workflow file for this run

name: CI Build
on: [push, pull_request, workflow_dispatch]
jobs:
build-core:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore
run: dotnet restore Branding.sln
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
- name: Build
run: dotnet build --no-restore -c Release Branding.sln
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
- name: Test
run: dotnet test --no-restore Branding.sln