Skip to content

Bump Verify.Xunit from 31.5.1 to 31.7.2 #51

Bump Verify.Xunit from 31.5.1 to 31.7.2

Bump Verify.Xunit from 31.5.1 to 31.7.2 #51

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@v5
- 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"