8000 Bump System.Text.Json from 5.0.2 to 8.0.4 in /src · exyi/CheckTestOutput@61fb28b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 89C2 /span>

Bump System.Text.Json from 5.0.2 to 8.0.4 in /src #34

Bump System.Text.Json from 5.0.2 to 8.0.4 in /src

Bump System.Text.Json from 5.0.2 to 8.0.4 in /src #34

Workflow file for this run

name: Github Actions
on: ["push"]
env:
DOTNET_NOLOGO: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
dotnet-unit-tests:
name: .NET unit tests
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false # don't kill tests when one environment fails
matrix:
os: [ubuntu-latest, windows-2022, macOS-latest]
steps:
- uses: actions/checkout@v2
# .NET
- uses: actions/setup-dotnet@v1
with:
dotnet-version: |
7.0.102
- if: ${{ runner.os == 'Windows' }}
uses: microsoft/setup-msbuild@v1.1
- run: dotnet build src /WarnAsError
- run: dotnet build exampleTest
- run: dotnet test
--logger "GitHubActions;report-warnings=true"
--configuration Debug
-p:WarningLevel=0
exampleTest
shell: bash
- run: dotnet test
--logger "GitHubActions;report-warnings=true"
--configuration Release
-p:WarningLevel=0
exampleTest
shell: bash
0