Skip to content

Updates that fixed serialization problems #6

Updates that fixed serialization problems

Updates that fixed serialization problems #6

Workflow file for this run

name: CI
on:
push:
branches-ignore: [main]
jobs:
build-and-deploy:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x.x'
- name: Restore dependencies
run: dotnet restore ./src
shell: bash
- name: Build
run: dotnet build ./src --no-restore --configuration Release
shell: bash
- name: Run tests
run: dotnet test ./src --no-restore --logger trx --results-directory testresults
shell: bash