Skip to content

Bump System.Text.Json from 6.0.0 to 6.0.10 in /src/TimeZoneNames #11

Bump System.Text.Json from 6.0.0 to 6.0.10 in /src/TimeZoneNames

Bump System.Text.Json from 6.0.0 to 6.0.10 in /src/TimeZoneNames #11

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: 1
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Restore
run: dotnet restore --nologo
- name: Run Data Builder
run: dotnet run --project src/TimeZoneNames.DataBuilder -c Release --nologo --no-restore
- name: Build Solution
run: dotnet build -c Release --nologo --no-restore
- name: Test
run: dotnet test -c Release --nologo --no-build -l GitHubActions -l "trx;LogFileName=testresults.trx"