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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |