Skip to content

Fix Fin Serialization in JSON Lines serializer #630

Fix Fin Serialization in JSON Lines serializer

Fix Fin Serialization in JSON Lines serializer #630

Workflow file for this run

name: .NET
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
fail-fast: false
matrix:
# we have to use a larger runner because the default windows runner
# only comes with 14GB working disk which we well and truly fill now.
# part of the problem is that git keeps a copy of all lfs files in the
# index as well as rehydrated in the repo which effectively double the size.
os: [ubuntu-latest, windows-latest-larger, macos-latest]
runs-on: ${{ matrix.os }}
steps:
# https://github.com/nschloe/action-cached-lfs-checkout
- name: Checkout code
uses: nschloe/[email protected]
- name: Get drive info
shell: pwsh
run: Get-PSDrive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build
automerge:
# https://github.com/marketplace/actions/github-action-merge-dependabot
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}