Skip to content

Ensure container has IServiceProvider/IServiceScopeFactory #7

Ensure container has IServiceProvider/IServiceScopeFactory

Ensure container has IServiceProvider/IServiceScopeFactory #7

Workflow file for this run

name: .NET Core - Build only
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Pack
run: dotnet pack --include-symbols -p:SymbolPackageFormat=snupkg --no-build -c Release -o .
- uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: |
**/*.nupkg
**/*.snupkg