fix: Support empty string enum serialization and deserialization #12
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
framework: | |
- 8.0 | |
- 9.0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.framework }}.x | |
- name: Build | |
run: dotnet build -c Release --framework net${{ matrix.framework }} | |
- name: Test | |
run: dotnet test -c Release --framework net${{ matrix.framework }} --no-build |