Skip to content

fix: Support empty string enum serialization and deserialization #13

fix: Support empty string enum serialization and deserialization

fix: Support empty string enum serialization and deserialization #13

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
frameworks: [
{ framework: "net8.0", version: "8.0.x" },
{ framework: "net9.0", version: "9.0.x" },
]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.frameworks.version }}
- name: Build
run: dotnet build -c Release --framework ${{ matrix.frameworks.framework }}
- name: Test
run: dotnet test -c Release --framework ${{ matrix.frameworks.framework }} --no-build