Skip to content

build(deps): bump Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.ObjectPool, Microsoft.Extensions.Options, Microsoft.Orleans.Core, Microsoft.Orleans.Core.Abstractions, Microsoft.Orleans.OrleansProviders, Microsoft.Orleans.Runtime.Abstractions and System.Text.Json #447

build(deps): bump Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.ObjectPool, Microsoft.Extensions.Options, Microsoft.Orleans.Core, Microsoft.Orleans.Core.Abstractions, Microsoft.Orleans.OrleansProviders, Microsoft.Orleans.Runtime.Abstractions and System.Text.Json

build(deps): bump Microsoft.Extensions.DependencyInjection, Microsoft.Extensions.DependencyModel, Microsoft.Extensions.Hosting.Abstractions, Microsoft.Extensions.Logging, Microsoft.Extensions.Logging.Abstractions, Microsoft.Extensions.ObjectPool, Microsoft.Extensions.Options, Microsoft.Orleans.Core, Microsoft.Orleans.Core.Abstractions, Microsoft.Orleans.OrleansProviders, Microsoft.Orleans.Runtime.Abstractions and System.Text.Json #447

Workflow file for this run

name: build
on:
push:
branches: "*"
pull_request:
branches: "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal --logger:trx
- name: Upload Test Results
uses: actions/[email protected]
with:
# Artifact name
name: Test Results
# A file, directory or wildcard pattern that describes what to upload
path: "**/*.trx"