Adjust uppercase json serialization tests #557
Workflow file for this run
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: .NET Core | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
branches: | |
- dev | |
env: | |
TargetNet8: True | |
jobs: | |
build: | |
runs-on: windows-latest | |
continue-on-error: true | |
name: Wilson GitHub Action Test | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup .NET 8.0.x | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.x | |
- name: Run the tests | |
run: dotnet test Wilson.sln | |
# Run baseline package validation | |
- name: Pack | |
run: dotnet pack Product.proj --no-restore --no-build |