Skip to content

Serialize dicts, lists, dates, times, and add more testing #8

Serialize dicts, lists, dates, times, and add more testing

Serialize dicts, lists, dates, times, and add more testing #8

Workflow file for this run

name: Driver tests
on:
pull_request:
jobs:
dotnet-test:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal